How to hide a script ( an ad) from a specific post?

I would like to hide a script, an ad actually from a specific post. The script is placed on header. I am a rookie here so please help!

Topic ads posts Wordpress javascript

Category Web


You can do something like this :

// remove the script from the queue if were are on the post ID 11
add_action('wp_enqueue_scripts', 'remove_script_specific_post');
function remove_script_specific_post(){
    if( 11==get_the_ID() ){
        wp_dequeue_script('my_script_handle'); 
    }
}

Provided that the script has been added with wp_enqueue_script

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.