Advertisement
Guest User

Tiberion

a guest
Sep 19th, 2011
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Find the following snippet in the tiberion theme header
  2.  
  3. <script>
  4. jQuery.backstretch("<?php if ( is_single() ) {
  5. get_image_url();
  6. }else{
  7. $default = get_option('tiber_default'); echo $default;
  8. }
  9. ?> ");
  10. </script>
  11.  
  12. ............and change it to the following
  13.  
  14. <script>
  15. jQuery.backstretch("<?php if ( is_singular( 'reviews' ) ) {
  16. get_image_url();
  17. }else{
  18. $default = get_option('tiber_default'); echo $default;
  19. }
  20. ?> ");
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement