Advertisement
Guest User

Untitled

a guest
Oct 1st, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <ul>
  2. <?php
  3. $query_args = new WP_Query(
  4. array(
  5. 'post_type' => 'attachment',
  6. 'posts_per_page' => -1,
  7. )
  8. );
  9. if ( $query_args->have_posts() ) {
  10. while ( $query_args->have_posts() ) : $query_args->the_post();
  11. $query_args->the_post();
  12. echo '<li>' . get_the_title() . '</li>';
  13. endhwile;
  14. }
  15. ?>
  16. </uk>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement