Ads in Sidebar on Homepage only?
-
Hello,
I’m trying to figure out how to display ads in my sidebar.php, but only on the homepage. I tried both code methods below, but the ads continue to show on every page. Can anyone help me troubleshoot why?
<?php if ( is_front_page() ) { ?>
HTML code for ads
<?php } ?><?php if ( is_home() ) { ?>
HTML code for ads
<?php } ?>*Notes:
Settings>Reading>Front page displays: Your latest postsIf I use the following code, the ads do not show up anywhere.
<?php if (!is_home() ) { ?>
HTML code for ads
<?php } ?><?php if(is_home() && $post==$posts[0] && !is_paged()) { ?>
HTML code for ads
<?php } ?>
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘Ads in Sidebar on Homepage only?’ is closed to new replies.