Guest User

Untitled

a guest
Dec 13th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. $args = array ( 'category' => single_cat_title(), 'posts_per_page' => 5);
  3. $myposts = get_posts( $args );
  4. foreach( $myposts as $post ) : setup_postdata($post);
  5. ?>
  6. <li>
  7. <?php the_title(); ?>
  8. </li>
  9. <?php endforeach; ?>
Add Comment
Please, Sign In to add comment