Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wpgaurav
Created April 9, 2020 10:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpgaurav/2faad0cdb324272b8b461e6f72ead12f to your computer and use it in GitHub Desktop.
Save wpgaurav/2faad0cdb324272b8b461e6f72ead12f to your computer and use it in GitHub Desktop.
Add Google Auto Ads to posts only
<?php add_action('wp_head', 'google_ads');
function google_ads() {
if (is_singular('post')){
echo '<script data-ad-client="ca-pub-1495783196891276" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>';
}
// Change data-ad-client="ca-pub-1495783196891276" with your data-ad-client
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment