Calling JavaScript for specific page irrespective of whichever theme you select
See wp_enqueue_script() for the information how to add scripts without editing the HTML. I assume the script is already registered or you’ll add all necessary parameters. Tied to the particular page ID: if( is_page($page_id) ) { // provide the page ID wp_enqueue_script(‘YOUR_SCRIPT_NAME’); //enqueue the script on success } Tied to the page slug: $slug = … Read more