Advertisement
Guest User

Untitled

a guest
Dec 4th, 2014
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. <?php $posts=query_posts($query_string . '&orderby=asc&posts_per_page=5'); if (have_posts()) : while (have_posts()) : the_post(); ?>
  2.  <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  3. <?$content = get_the_excerpt();
  4. echo substr($content, 0, 200);
  5. global $post;
  6. $text = $post->post_excerpt;?>
  7.  
  8. <?php endwhile; else: ?>
  9.  
  10.   <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
  11. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement