Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. $myPost = new WP_Query( array(
  3. 'posts_per_page' => '50',
  4. 'orderby' => 'modified',
  5. 'order' => 'DESC'
  6. ));
  7. while ($myPost->have_posts()): $myPost->the_post();
  8. ?>
  9.  
  10. <div class="timeline-group">
  11. <p class="modified-time"><?php the_time('F j, Y') ?></p>
  12. <h5><a href="<?php the_permalink();?>"><?php the_title();?></a></h5>
  13. </div>
  14.  
  15. <?php
  16. endwhile;
  17. //Reset Post Data
  18. wp_reset_postdata();
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement