Skip to content

Instantly share code, notes, and snippets.

@dbernar1
Last active December 22, 2015 22:19
Show Gist options
  • Save dbernar1/6538896 to your computer and use it in GitHub Desktop.
Save dbernar1/6538896 to your computer and use it in GitHub Desktop.
<?php
add_action( 'wp_enqueue_scripts', 'scripts_and_styles__of_me_theme');
function scripts_and_styles__of_me_theme() {
if ( is_page( 'forecasts' ) || is_front_page() || is_page( 'radar' ) || is_page( 'historical-data' ) ) {
wp_enqueue_script( 'jquery-ui-autocomplete' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment