Top

Adz on "Hide Comment Time & Date"

April 14, 2010 by  

http://codex.wordpress.org/Template_Tags/wp_list_comments
You’ll have to create a callback function, as far as I can tell, unless there’s a simpler method.
There’s an example in the link above. If you want to keep everything else the same as the default, just remove or comment out the part that says:
<?php printf(__('%1$s at %2$s'), get_comment_date(), get_comment_time()) ?>

Simpler method: if your theme uses a class name for the date/time, you can use CSS to just hide it. For example, if the markup is:
<span class="commentDateTime">15 April 2010 at 01:23</span>
You can add this to your CSS:
.commentDateTime { display:none }

Share

Comments

Facebook comments:

Feel free to leave a comment...
and oh, if you want a pic to show with your comment, go get a gravatar!





*
Bottom