Wordpress Category Help

Discussion in 'PHP' started by aaron_nimocks, Sep 5, 2008.

  1. #1
    Spent an hour on this and now Im spent...

    I have 10 categories on a wordpress blog and I want to display a different advertisement on each one of these categories below the post on single.php

    What I am trying to do is something like

    if category ID = number then echo this advertisement code
    PHP:
    No matter how I try it, its not working.

    Can some kind fellow give me the code to do this.

    Thanks!
     
    aaron_nimocks, Sep 5, 2008 IP
  2. Spawny

    Spawny Well-Known Member

    Messages:
    252
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    110
    #2
    try this

    
    <?php 
    if ( in_category(1) ) 
    {
         echo '{ADS HERE}';
    } 
    else if ( in_category(2) )
    {
        echo '{ADS HERE}';
    }
    else if ( in_category(3) )
    {
        echo '{ADS HERE}';
    }
    ?>
    PHP:
     
    Spawny, Sep 5, 2008 IP