treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Need a bit of help regarding wordpress website !!

  • Hi everyone.

    This is related to this website.

    The website is designed in wordpress by myself (self tought....and still learning !!)

    Its a pheasant shooting review website in the UK and Ireland, with each review being seperated by the county that it is in.

    And what im trying to do if to have 2 free advertising boxes at he top of each county.

    So for example if there are reviews in Devon at the top I will have 2 adverts (hopefully from a shoot in Devon), but then I would want different adverts for the review under say Yorkshire.

    Can anyone help me with any ideas on how to go about this ?

  • If they are categories, try something like

    <?php 
    if ( in_category( 'devon' )) {
      // .....
    } elseif ( in_category( 'yorkshire' )) {
      // .....
    } else {
      // .....
    }
    ?>
    
  • You could create separate widget areas for them I suppose, that would get a bit unruly though with too many.