Calling scripts on certain page
-
Im trying to call a cetain script on a certain page.
‘wp_register_script( ‘WPTS’,’https://cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.4/jstz.min .js’);’
‘wp_enqueue_script( ‘WPTS’,’https://cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.4/jstz.min.js’);’Here I want cancel calling this script on pages apart from the one I want to.
if(! is_page(7084) ) {
wp_dequeue_script(‘WPTS’);
}
Not sure where im going wrong..
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Calling scripts on certain page’ is closed to new replies.