Advertisement
finySTAR

Untitled

Jan 11th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. if (have_post()):
  4.     while(have_post()):the_post();?>
  5.    
  6.     <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  7.     <?php the_content();?> 
  8.    
  9.     <?php endwhile;
  10.    
  11.     else:
  12.         echo'<p>No content found</p>';
  13.    
  14.     endif;
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement