Advertisement
alchymyth

Untitled

Nov 16th, 2011
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. if ( in_category( 'new-events' ) && in_category( 'old-events' ) ) {?>
  3.  
  4. //styling for this category
  5. <style type="text/css">
  6. #eventLocation {
  7. background:url(/wp-content/themes/mytheme/images/myimage2.png) no-repeat left 2px;
  8. }
  9. </style>
  10.  
  11. <?php } elseif ( in_category( 'new-events' )) {?>
  12. //styling for this category
  13. <style type="text/css">
  14. #eventLocation {
  15. background:url(/wp-content/themes/mytheme/images/myimage1.png) no-repeat left 2px;
  16. }
  17. </style>
  18.  
  19. <?php } else { ?>
  20. <?php } ?>
  21.  
  22.  
  23.  
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement