Guest User

Untitled

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