Forums

Very Simple Quick Question, Put ad in Sidebar ONLY in Archives (2 posts)

  1. remotay
    Member
    Posted 3 years ago #

    I Want to put my adsense ad on the sidebar, but it should only show up while users are browsing my archive pages, looking for a post to click on.

    Also, I want to make the ad show up on the sidebar when users are looking at one of my pages as well. (Not post).

    Thanks in advance! Looking forward to reading the solution.

  2. Jeremy Clark
    Moderator
    Posted 3 years ago #

    The simplest way would be with conditional tags.
    http://codex.wordpress.org/Conditional_Tags#Any_Archive_Page
    http://codex.wordpress.org/Conditional_Tags#A_PAGE_Page
    an example would be

    <?php if ( is_archive() || is_page('1') ) { ?>
    Your ad code here.
    <?php } ?>

    This will show up on any archive page and on the page with the id of 1.

Topic Closed

This topic has been closed to new replies.

About this Topic