Guest User

Untitled

a guest
May 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <?php
  2. $homepagePosts = new WP_Query(array(
  3. 'posts_per_page' => 2
  4. ));
  5.  
  6. while ($homepagePosts->have_posts()) {
  7. $homepagePosts->the_post(); ?>
  8. <div>
  9. <a href="<?php the_permalink(); ?>">
  10. <span><?php the_time('M'); ?></span>
  11. <span><?php the_time('d'); ?></span>
  12. </a>
  13. <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  14. <p>
  15. <?php echo wp_trim_words(get_the_content(), 18); ?>
  16. <a href="<?php the_permalink(); ?>">View more</a>
  17. </p>
  18. </div>
  19. <?php } wp_reset_postdata();
  20. ?>
Add Comment
Please, Sign In to add comment