Guest User

Untitled

a guest
May 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2. // The Query
  3. query_posts( 'cat=197');
  4.  
  5. // The Loop
  6. while ( have_posts() ) : the_post();
  7. echo '
  8. <ul>
  9. <li>';
  10. the_title();
  11. echo '</li>
  12. </ul>
  13. ';
  14. endwhile;
  15.  
  16. // Reset Query
  17. wp_reset_query();
  18. ?>
Add Comment
Please, Sign In to add comment