Advertisement
silis25

header.php

Mar 12th, 2011
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2. if(is_single() & !is_home()) {
  3. $myfield = 'PostTitle';
  4. $postimage = get_post_meta($post->ID, $myfield, true);
  5. ?>
  6. <style type="text/css">
  7.  
  8. .entry-title {
  9. border:none;
  10. color:black;
  11. <?php
  12. if($postimage) {
  13. ?>
  14. background-image: url('http://letthemstare.com/wp-content/themes/manifest_v1.1/images/<?php echo $postimage; ?>.jpg');
  15. <?php
  16. } elseif(!$postimage) {
  17. ?>
  18. background-image: none;
  19. <?php
  20. }
  21. ?>
  22. }
  23.  
  24. </style>
  25. <?php
  26. }
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement