I wonder if anyone can help with this please? I plan to build a wordpress site and have installed a theme at: http://internet-ebooks.net/test you can see the normal "hello world" when you log in but there is a date of March 20 just to the left of words and I want to get rid of this if possible. Does anyone know how to do this? kind regards Colin
There's a plugin, but I think it just removes the date from the homepage (I don't remember) http://wordpress.org/extend/plugins/date-exclusion-seo-plugin/ You can also try removing it from the php templates (Appearance/Editor) Look for something like: <?php the_time(__('F jS, Y', 'kubrick')) ?> Probably in index.php, search.php, archives.php, and single.php
what bob25 and hmansfield said is correct - you'll just have to remove the php time snip. i just recently started editing some php snippets in and out of a few themes so i cannot help a lot... my only contribution to your question is this - if thats the homepage of your wordpress installation, some themes also have a separate "home.php" page. If thats your front page and you HAVE a home.php page in your theme editor - you might also find that <?php the_time ?> type code there.