Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. /* ---Homepage quicksearch autofill---*/
  2. add_action( 'genesis_meta', 'homepage_autofill_quicksearch' );
  3. function homepage_autofill_quicksearch() {
  4. if(is_home() )
  5. //*add script
  6. wp_register_script( 'dsidx-autocomplete', get_template_directory_uri() . '/wp-content/plugins/dsidxpress/js/autocomplete.js', array(), '2.0.11', 'all' );
  7. wp_enqueue_script( 'dsidx-autocomplete' );
  8. //add css
  9. wp_register_style( 'dsidx-autocomplete-css', get_template_directory_uri() . '/wp-content/plugins/dsidxpress/css/jquery-ui-1.8.21-autocomplete.css', array(), '2.0.21', 'all' );
  10. wp_enqueue_style( 'dsidx-autocomplete-css' );
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement