Balkhis - Vision For Success

How to Limit the number of Archive months displayed in wordpress?

Dear Readers, I would like to thank you for reading this post. I highly value your feedback and would like to know more about my readers. Follow me on Twitter

I got this question over the email. How to limit the number of Archive months displayed in WordPress? It is pretty easy if you read the wordpress documentation. But I will save you some time and show you here. But why do you even need to bother with this?

Well there are some people who like to have archive links in the sidebar because they want their user to browse easily. Then some just want to show how old their blog really is. On the other hand some people absolutely think archives is waste of space on the sidebar. It is too long for older blogs. Well this snippet of code will let you make a compromise. Instead of showing monthly archives like it comes with wordpress default:

<h2>Archives</h2>
<ul>
<?php wp_get_archives(‘type=monthly’); ?>
</ul>

The above codes is built in default wordpress which is fine until the first few months or maybe upto a year. Then you start to get this set of useless links on your sidebar that not everyone visits, so you would have to simply edit the codes and change it like this:

<h2>Archives</h2>
<ul>
<?php wp_get_archives(‘type=monthly&limit=6′); ?>
</ul>

Now this code above will limit your number of archives month displayed on the sidebar to 6. Change the limit number as you please. Now the idea of this is that you have a separate archive page. That contains all the other years and what ever else you want. But the above codes you use to display on the sidebar.

I hope you guys find this useful.



To stay updated with the blog, please consider subscribing to my full feed RSS. You can also subscribe by Email and have new posts sent directly to your inbox. I hate spam as well, so I promise you that you will not be spammed.
Add to Social Bookmarks:
Add this Article to Digg Add this Article to Stumbleupon Add this Article to Del.icio.us Add this Article to Reddit Add this Article to Newsvine Add this Article to Technorati

RSS feed

4 Comments

Comment by Make money
2008-11-27 20:29:51

That’s a nice tutorial
but what’s the use !!!


 
2008-11-28 09:04:22

Good thing Syed, Really a simple thing to manage, but surely will be of use sometime… Thanks for the info again.


 
Comment by Web Design Beach
2008-11-28 09:30:30

Probably, someone will find this useful, but i think it is not good to have archives because of duplicate content. It is fine to use it only if archives are the only categorization on the blog. And in that case this solution would be perfect indeed.


 
Comment by Ronald
2009-01-05 06:10:11

Thanks – this post helped me understand this particular WordPress functionality.


 

Sorry, the comment form is closed at this time.

Subscribe to Balkhis via RSS
Subscribe to Balkhis via Email Pimp My Blog