I want to get my wordpress archives to show like a list with only title and date like labnol blog. Can anybody suggest any plugin to do that?
Wordpress archives generator plugin
(2 posts) (2 voices)-
Posted 1 year ago #
-
Here's the code I use to generate my WordPress archive pages for Author, Tags & Categories
<div class="post"> <h4 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h4> <p class="author-data"><?php the_time('F j, Y') ?> | <?php the_category(', ') ?></p> </div>Posted 1 year ago #
Reply
You must log in to post.