Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #48968, comment 11


Ignore:
Timestamp:
09/24/2020 09:46:53 AM (4 years ago)
Author:
beaubhavikwebslaw
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #48968, comment 11

    initial v1  
    1 // Solution to confliction of jquery with seo plugin - Backend Side
     1{{{#!php
     2<?php
     3//Beaubhavik Code = START
     4// Solution to confliction of jquery with seo plugin - Backend Side -
    25function webslaw_hoverintent_reload() {
    36    wp_deregister_script('hoverIntent');
    47    wp_register_script('hoverIntent', ( 'https://cdnjs.cloudflare.com/ajax/libs/jquery.hoverintent/1.10.1/jquery.hoverIntent.min.js'), array('jquery'), 'r6.1');
    58}
     9//Beaubhavik Code = END
    610add_action('admin_init', 'webslaw_hoverintent_reload');
     11}}}