Advertisement
arnabkumar

page.php

Mar 31st, 2014
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php if(have_posts()) : ?><?php while(have_posts())  : the_post(); ?>
  2.  
  3.                         <h2><?php the_title(); ?></h2>
  4.  
  5.                         <?php the_content(); ?>
  6.  
  7.                      
  8.  
  9.                     <?php endwhile; ?>
  10.  
  11.                      
  12.  
  13.                     <?php else : ?>
  14.  
  15.                         <h3><?php _e('404 Error&#58; Not Found'); ?></h3>
  16.  
  17.                     <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement