Forums

Add Adsense When Number of Posts in Archive is Odd (3 posts)

  1. lelaiskandar
    Member
    Posted 8 months ago #

    Hi guys,

    Can anyone please help show me how to display my adsense code ONLY when the number of posts in the archive is odd.

    The adsense is added on all archive pages right now. You can see it here :
    http://www.my-inspirational-quotes.com/category/auto-suggestion-quotes/

    But when there's even number of posts, the adsense overlap the last post. You can see it here. :
    http://www.my-inspirational-quotes.com/category/baseball-quotes/page/3/

    Does anyone know how I can tell wordpress to show adsense only when the number of posts in the archive page is odd ?

    Thank you in advance for your help guys.

  2. alchymyth
    The Sweeper
    Posted 8 months ago #

    without the information, how you insert the adsense, here just one idea:

    to get the number of posts in an archive page:
    $wp_query->post_count;

    to check for 'odd' and show adsense:

    <?php if( ($wp_query->post_count)%2 == 1 ) : ?>
    adsense
    <?php endif; ?>
  3. lelaiskandar
    Member
    Posted 8 months ago #

    Awesome. Let me try see if it works.

    Thanks!

Reply

You must log in to post.

About this Topic