Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php query_posts('posts_per_page=1'); ?>  
  2.     <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  3.         <?php the_title(); ?>
  4.        
  5.     <?php endwhile; else: ?>
  6.         <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
  7.     <?php endif; ?>
  8. <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement