Skip to content

Instantly share code, notes, and snippets.

@raideus
Created April 13, 2012 17:12
Show Gist options
  • Save raideus/2378426 to your computer and use it in GitHub Desktop.
Save raideus/2378426 to your computer and use it in GitHub Desktop.
Register & Enqueue scripts for a particular page (Wordpress)
<?php
function my_homepage_scripts() {
if ( is_front_page() ) {
// jQuery Cycle plugin
wp_register_script( 'jquery-cycle', get_template_directory_uri() . '/js/libs/jquery.cycle.all.js', array( 'jquery' ), '2012-03-13T10:15', false );
wp_enqueue_script( 'jquery-cycle' );
// Custom settings for jQuery Cycle
wp_register_script( 'jquery-cycle-settings', get_template_directory_uri() . '/js/jquery-cycle-settings.js', array( 'jquery-cycle', 'jquery' ), '2012-04-13T10:15', false );
wp_enqueue_script( 'jquery-cycle-settings' );
}
}
add_action('template_redirect', 'my_homepage_scripts');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment