Are you looking for a way to retrieve last year archives only in WordPress? While there’s probably a plugin for this, we have created a quick code snippet that you can use to retrieve last year archives only in WordPress.
This snippet retrieves and echoes only last year archives. It could be useful if you want to make collapsing/expanding archives by year.
Instructions:
All you have to do is add this code to your theme’s index.php file or in a site-specific plugin:
<?php function filter_last_year_archives($where_clause) { $year = date('Y') - 1; return $where_clause." AND post_date LIKE '%".$year."%'"; } add_filter('getarchives_where','filter_last_year_archives'); wp_get_archives('type=monthly&show_post_count=true&echo=1'); remove_filter('getarchives_where','filter_last_year_archives'); ?>
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly copy / paste code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 21 best WordPress real estate themes and how to set up Shopify with WordPress.
Comments Leave a Reply