I just bought a new domain and installed using new wordpress 3.0. I have a difficulty when I want remove posted date on this new version. My objective is eliminate impression of outdated posting blog. So I have to delete a phrase like “posted on ..(date/time) that always appear in my index page and single post.
As I know, WordPress 3.0 has launched since April 24, 2010 and there’s some new features inside it. The another sites or forums show to us how delete posted with this step :
” Try deleting <?php the_time(’F jS, Y’) ?> from your single.php and index.php. “
When I searhed it, I can’t found word : <?php the_time(’F jS, Y’) ?> in both .php pages. I try to check my another old version wordpress blog, that is 2.9 version. That phrase is exist, then you just delete it and the case has been closed. But how about new Wordpress version 3.0?
I’m not a webmaster who understand about editing code on every single page editor. But finally I found the way how to remove posted date in my all pages in my default theme (twentyten theme). Follow this steps :
- Open Single post (single.php) and loop.php page on your WordPress theme editor
- Search and delete this phrase : ” <?php twentyten_posted_on(); ?> “
- Your posted date already deleted

If you use another theme, might be you have to use different way. The key is just found phrase “posted on” or “posted_on” or the another kind of used phrase on your single post, then remove a row of code.


