Remove date from posts – Untitled theme
-
Hi, just spent couple of hours Googling how to remove the date from my posts and drawn a blank. I have found a reference to the date and time on the code in template-tags but have no idea if this is the right place or how to edit these. Hope someone can help this coding novice.
The theme is called Untitled and my website is http://www.vintageskistyle.com
-
Last ditch attempt – found this on johnlamansky.com and it seems to have worked, thank goodness.
For anyone else wanting to try this fix go to Appearance, Editor, Theme Functions then copy and paste this code at the top of the page after <?php
function jl_remove_post_dates() {
add_filter(‘the_date’, ‘__return_false’);
add_filter(‘the_time’, ‘__return_false’);
add_filter(‘the_modified_date’, ‘__return_false’);
add_filter(‘get_the_date’, ‘__return_false’);
add_filter(‘get_the_time’, ‘__return_false’);
add_filter(‘get_the_modified_date’, ‘__return_false’);
} add_action(‘loop_start’, ‘jl_remove_post_dates’); -
For anyone else wanting to try this fix go to Appearance, Editor, Theme Functions then copy and paste this code at the top of the page after <?php
function jl_remove_post_dates() {
add_filter(‘the_date’, ‘__return_false’);
add_filter(‘the_time’, ‘__return_false’);
add_filter(‘the_modified_date’, ‘__return_false’);
add_filter(‘get_the_date’, ‘__return_false’);
add_filter(‘get_the_time’, ‘__return_false’);
add_filter(‘get_the_modified_date’, ‘__return_false’);
} add_action(‘loop_start’, ‘jl_remove_post_dates’);The theme is called Untitled and my website is http://www.vintageskistyle.com
No, no, no. WordPress.com users do not have access to those files. You’re posting in the wrong forum.
This is the WordPress.com support forum. We do not provide support for WordPress.ORG software installs.WordPress.com and WordPress.org are completely separate and different http://support.wordpress.com/com-vs-org/
If you don’t have a username account at WordPress.ORG click http://wordpress.org/support/ and register one on the top right hand corner of the page that opens, so you can post to the support forums there and receive advice from WordPress.ORG bloggers.
-
-
- The topic ‘Remove date from posts – Untitled theme’ is closed to new replies.