Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created March 16, 2013 05:19
Show Gist options
  • Save braddalton/5175092 to your computer and use it in GitHub Desktop.
Save braddalton/5175092 to your computer and use it in GitHub Desktop.
Displays your Adsense code after all single posts. Change the hook to change the location of displaying your ads and change the conditional tag to display on other pages. Style your ads using the adsense-style class as your selector.
add_action('genesis_after_post_content', 'adsense_after_posts');
function adsense_after_posts() {
if (is_single() )
echo '<div class="adsense-style">Adsense goes here</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment