You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

How can I remove the time and date in my posts?

UserPost

8:36 am
March 5, 2010


pink

New Member

posts 2

1

I would appreciate knowing what line of code I need to delete and in what section of the editor to remove the time and date in all my posts.

Thank you!

12:40 pm
March 8, 2010


Ryan

Admin

posts 1252

2

You can either go into the index.php and single.php and find and remove the div with the class of "postMeta" (make sure to get the entire div removed) or you could add this to the end of the style.php file to hide it with CSS:

.postMeta {display:none;}

Then save style.php and resave the theme settings to rewrite the style sheet.

This does not remove the date/time from the code it just hides it, so if you want it gone, do the first solution.