Skip to content

Instantly share code, notes, and snippets.

@chillybin
Created November 17, 2015 01:04
Show Gist options
  • Save chillybin/374ad3d649c515c6cec7 to your computer and use it in GitHub Desktop.
Save chillybin/374ad3d649c515c6cec7 to your computer and use it in GitHub Desktop.
Add Advertisement after 1st post in Genesis
add_action('genesis_after_post', 'ad_after_first_post');
function ad_after_first_post() {
global $wp_query;
if( !is_singular && 0 == $wp_query->current_post ) { ?>
<div id='div-gpt-ad-1442795039305-2'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1442795039305-2'); });
</script>
</div>
<?php }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment