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

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

Post a Comment for "Displaying Search Term (Tag/Archive) In WordPress"