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
You need to edit archive.php
Just add
<?php if( is_month() ) { ?> // Check if month based archive
<?php echo 'Here are the posts for'; ?>
<?php the_time('F Y');
} ?>
You may like these posts
Post a Comment for "Displaying Search Term (Tag/Archive) In WordPress"