Enqueue scripts all over but not in single.php
Question
need to insert this script in the footer on the home, in categories, in pages, in the tags in the search but NOT in single.php
function live_search() {
wp_enqueue_script('live_search', get_bloginfo('stylesheet_directory') .'/assets/js/live.search.js', array('jquery'), '1.0.1', true );
wp_localize_script(
'live_search',
'MovieWordpressSearch',
array(
'api' => moviewp_url_search(),
'nonce' => moviewp_create_nonce('moviewp-search-nonce'),
'area' => ".live-search",
'more' => "Show all",
)
);
}
add_action('wp_enqueue_scripts', 'live_search');
can someone help me? Thanks.
0
2 months
0 Answers
13 views
0
Leave an answer
You must login or register to add a new answer .