When I installed WordPress 3.4, my plugins that uses jquery suddenly didn’t work.

Here’s how I fixed it. Add these codes on your plugin.
{code}
add_action(‘wp_head’, ‘load_scripts’); // to load jquery on the font page
add_action(‘admin_head’, ‘load_scripts’); // to load jquery on the admin page

function load_scripts(){
wp_enqueue_script(‘jquery’);
//other scripts
}

{/code}

4 Responses

    1. some plugins that uses jquery. It depends on the plugin called the jquery. If it simply calls it using wp_enqueue_script, then it would result to an error. It should be called inside a function (explained above)

Leave a Reply