Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php if( empty($_GET)): ?>
  2. <div>Some content here...</div>
  3. <?php elseif ($_GET['v'] === 'menu'): ?>
  4.  
  5. <?php
  6.  
  7. if (have_posts()) :
  8. while (have_posts()) :
  9. the_post();
  10. the_content();
  11. endwhile;
  12. endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement