Advertisement
shakil97bd

WP Post Loop - For query post

Feb 2nd, 2015
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1. ************************************************** post loop ******************************************************
  2.  
  3.             <?php if(have_posts()) : ?>
  4.             <?php while (have_posts()) : the_post(); ?>
  5.                 <!-- your content here -->
  6.             <?php endwhile; ?>    
  7.             <?php endif; ?>
  8.  
  9.  
  10.  
  11.         ************** Post loop with 404 error message*************************
  12.  
  13.  
  14.             <?php if(have_posts()) : ?>
  15.             <?php while (have_posts()) : the_post(); ?>
  16.                 <!-- your content here -->
  17.             <?php endwhile; ?>
  18.             <?php else : ?>
  19.             <h3><?php _e('404 Error&#58; Not Found'); ?></h3>
  20.             <?php endif; ?>
  21.  
  22.  
  23.  
  24.  
  25.            
  26. ************************************************ End post loop *****************************************************
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement