Guest User

Untitled

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