Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created November 20, 2012 13:39
Show Gist options
  • Save WebEndevSnippets/4117986 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/4117986 to your computer and use it in GitHub Desktop.
Genesis: Ad after third post's content
add_action( 'genesis_after_post_content', 'we_category_ad' );
/**
* Ad after third post's content
*
*/
function we_category_ad() {
global $wp_query;
if( 2 == $wp_query->current_post )
echo '<div class="ad">Ad Goes Here</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment