Skip to content Skip to sidebar Skip to footer

Displaying Search Term (tag/archive) In Wordpress

I am currently using a sidebar in WordPress, and displaying 'Archive' and 'Popular Tags' in the side column. For Example - Archive code

Solution 1:

You need to edit archive.php

Just add

<?phpif( is_month() ) { ?>// Check if month based archive<?phpecho'Here are the posts for'; ?><?php the_time('F Y'); 
} ?>

Post a Comment for "Displaying Search Term (tag/archive) In Wordpress"