Sarathlal N

Display posts published one year ago - WordPress

If we have a large collection of posts, often there is a chance to ignored them by visitors because most of them only visits the freshest content.

In such situations, if we can creatively present our old posts, they help to keep our visitors to read few more posts from our blog.

The related posts, recent posts & random posts lists are consider as a effective methods in such situations.

Additional to these list, today we are going to display posts that were published over a year ago. This is a simple code snippet & we can insert it on our sidebar or single.php file.

<?php
$current_day = date('j');
$last_year = date('Y')-1;
query_posts('day='.$current_day.'&year='.$last_year);
if (have_posts()):
	while (have_posts()) : the_post();
	   the_title();
	   the_excerpt();
	endwhile;
endif;
?>

This code snippet is simple to understand the logic. First it store current day in $current_day variable, then calculate the previous year by decrementing 1 from current year & store it in $last_year variable.

At last it do a query to retrieve posts with day & year parameter with these variable. Then list post title & excerpt on pages.

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.