jquery-googleslides icon indicating copy to clipboard operation
jquery-googleslides copied to clipboard

Wordpress plugin requires update for use with current WP version

Open elmatterino opened this issue 10 years ago • 0 comments

Not the best place to report WP issue I suppose, but don't really see another option.

The current version of WP (4.x) require the wp_enqueue_* calls to be wrapped in a function called through the "wp_enqueue_scripts" hook in init.php.

Add before wp_enqueue_* calls:

function googleslides_scripts() {

Add after ep_enqueue_* calls, before tag handler:

}
add_action( 'wp_enqueue_scripts', 'googleslides_scripts' );

elmatterino avatar Aug 16 '15 01:08 elmatterino