Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php if(is_home()): ?>
  2.  
  3. <div>Your div.</div>
  4.  
  5. <?php endif; ?>
  6.  
  7. <?php if(is_home()): ?>
  8.  
  9. <div>Your div.</div>
  10.  
  11. <?php endif; ?>
  12.  
  13. <?php if(is_front_page()): ?>
  14.  
  15. <div>Your div.</div>
  16.  
  17. <?php endif; ?>
  18.  
  19. <?php if( $_SERVER['REQUEST_URI'] == '/' ) { ?>
  20. <div id="home_only">Content goes here..</div>
  21. <?php } ?>
  22.  
  23. #your-div{
  24. display: none;
  25. }
  26.  
  27. .body-class-page-id #your-div {
  28. display: block;
  29. }
  30.  
  31. <?php if( $_SERVER['REQUEST_URI'] == '/' ) { ?>
  32. <div id="home_only">Content goes here..</div>
  33. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement