Title: Adding a date to post&#039;s?
Last modified: August 21, 2016

---

# Adding a date to post's?

 *  Resolved [hitherehaley](https://wordpress.org/support/users/hitherehaley/)
 * (@hitherehaley)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/adding-a-date-to-posts/)
 * Hi I would like to add a date under my title in my posts is there any way to 
   do this in CSS?
 * [http://www.hitherehaley.com](http://www.hitherehaley.com)

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

 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/adding-a-date-to-posts/#post-4717218)
 * There should be post meta data (including date) showing as default.
 * Did you give your posts any Category or Tags?
 *  Thread Starter [hitherehaley](https://wordpress.org/support/users/hitherehaley/)
 * (@hitherehaley)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/adding-a-date-to-posts/#post-4717241)
 * I did give my posts categories, does that effect the date?
 *  Thread Starter [hitherehaley](https://wordpress.org/support/users/hitherehaley/)
 * (@hitherehaley)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/adding-a-date-to-posts/#post-4717243)
 * Ok, so I wrote a draft and left it “uncategorized and the date did show up. Is
   there not a way to categorize a post and have the date show up?
 *  Thread Starter [hitherehaley](https://wordpress.org/support/users/hitherehaley/)
 * (@hitherehaley)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/adding-a-date-to-posts/#post-4717244)
 * I have another factor that may be causing the dates not to show. Could scheduling
   the posts for a certain time (in the past or future) cause the meta data not 
   to show?
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/adding-a-date-to-posts/#post-4717249)
 * Look, [http://www.hitherehaley.com/2014/03/](http://www.hitherehaley.com/2014/03/)
   
   Here you can see the date and other post metas, the thing is that customizr by
   default doesn’t show those metas on home page. If you want them also in your 
   home page, add this to your [child theme](http://www.themesandco.com/customizr/how-to-customize-customizr-wordpress-theme/)
   functions.php:
 *     ```
       add_filter( 'tc_show_post_metas', 'force_show_post_metas', 10, 1 );
       function force_show_post_metas($bool){
           if ( tc__f('__is_home') )
               return true;
           return $bool;
       }
       ```
   
 * Hope this helps.
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/adding-a-date-to-posts/#post-4717251)
 * Ops, just saw that nicolas already provided this snippet:
    [http://www.themesandco.com/snippet/display-post-metas-home-page/](http://www.themesandco.com/snippet/display-post-metas-home-page/)
 *  Thread Starter [hitherehaley](https://wordpress.org/support/users/hitherehaley/)
 * (@hitherehaley)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/adding-a-date-to-posts/#post-4717275)
 * Thank you!

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

The topic ‘Adding a date to post's?’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/customizr/4.4.24/screenshot.png)
 * Customizr
 * [Support Threads](https://wordpress.org/support/theme/customizr/)
 * [Active Topics](https://wordpress.org/support/theme/customizr/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/customizr/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/customizr/reviews/)

 * 7 replies
 * 3 participants
 * Last reply from: [hitherehaley](https://wordpress.org/support/users/hitherehaley/)
 * Last activity: [12 years, 1 month ago](https://wordpress.org/support/topic/adding-a-date-to-posts/#post-4717275)
 * Status: resolved