Title: Need some code/plugin(s) for this feature!
Last modified: August 19, 2016

---

# Need some code/plugin(s) for this feature!

 *  [tupston](https://wordpress.org/support/users/tupston/)
 * (@tupston)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/need-some-codeplugins-for-this-feature/)
 * I want to have a page that will display a list of all posts by date like this:
 * PostDate1……………PostTitle1…………….PostCategories1
    PostDate2……………PostTitle2…………….
   PostCategories2 PostDate3……………PostTitle3…………….PostCategories3 PostDate4……………PostTitle4…………….
   PostCategories4 ……etc…..
 * I would like each post title clickable and obviously linked to the actual post.
 * I’ve scoured the web for plugins and even php scripts, but haven’t found anything
   I’ve really wanted. Any suggestions are appreciated, but it might just come down
   to how to write some php that will pull that info and put it into an organized
   table on a page.
 * Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/need-some-codeplugins-for-this-feature/#post-1399311)
 * apart from ‘get_header’, get_sidebar’ and ‘get_footer’, and making it into a 
   page template, for instance, this should do the job (not a copy/paste instruction):
 *     ```
       <?php
       // if neccessary insert query_posts here to get all posts and sorted as you like //
       if (have_posts()) : while (have_posts()) : the_post(); ?>
   
       <div class="postdate"><?php the_time(); ?></div><div class="posttitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></div><div class="postcats"><?php the_category(', ') ?></div>
   
       <?php endwhile; endif; ?>
       ```
   
 * basic styles for it:
 *     ```
       .postdate { float:left; width:100px; clear:left; }
       .posttitle { float:left; width:200px; }
       .postcats { float:left; width:500px; }
       ```
   
 * without the dots inline 🙁
 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/need-some-codeplugins-for-this-feature/#post-1399319)
 * It should just need a combination of [template development](http://codex.wordpress.org/Theme_Development)
   and some CSS.
 * [CSS Tutorials](http://www.w3schools.com/css/)
    [Learning CSS](http://www.w3.org/Style/CSS/learning)

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Need some code/plugin(s) for this feature!’ is closed to new replies.

## Tags

 * [code](https://wordpress.org/support/topic-tag/code/)
 * [php](https://wordpress.org/support/topic-tag/php/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 3 participants
 * Last reply from: [esmi](https://wordpress.org/support/users/esmi/)
 * Last activity: [16 years, 1 month ago](https://wordpress.org/support/topic/need-some-codeplugins-for-this-feature/#post-1399319)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
