jquery-googleslides
jquery-googleslides copied to clipboard
Wordpress plugin requires update for use with current WP version
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' );