Anyone knows, How to add Google adsense on only on homepage after first post?
Anyone knows, How to add Google adsense on only on homepage after first post?
locate the home page template (often index.php, or see http://codex.wordpress.org/Template_Hierarchy )
locate the loop, especially the endwhile; of the loop http://codex.wordpress.org/The_Loop
before the line with the endwhile; add something like (depending on your existing php structure with or without the php tags):
<?php if( is_home() && $wp_query->current_post == 0 ) { ?>
ADSENSE CODE
<?php } ?>
details depend on your theme.
You must log in to post.