Advertisement
alchymyth

a year ago posts

May 25th, 2011
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'numberposts' => -1,
  4. 'year' => date('Y')-1,
  5. 'month' => date('n'),
  6. 'day' => date('j')
  7. );
  8. $last_year = get_posts($args); 
  9. if ($last_year) {
  10. $temp = $post; ?>
  11. <span class="last-year">
  12. <h3>A Year Ago</h3>
  13. <?php foreach($last_year as $post) :
  14. setup_postdata($post); ?>
  15. <a href="<?php echo get_permalink($post->ID); ?>"><?php the_title(); ?></a><br />
  16. <?php endforeach;
  17. $post = $temp; ?>
  18. </span>
  19. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement