pezastic
Member
Posted 8 years ago #
1. I see that this is not an issue in the current CVS, as timezone changes beyond the 13 hour restriction have been removed. (Wonderful thing, that CVS!)
2. I think I answered this one myself. Just remove what is in the time_format field under Other Options.
For those who don't want to / can't use the CVS version, have a look at bug #825404, which has a fix attached (simple php script that fixes this problem, works with wp 0.72).
There's a line in index.php, around line 39, which states:
<span class="meta">" title="Category: <?php the_category() ?>">[<?php the_category() ?>] — <?php the_author() ?> @ <?php the_time() ?></span>
In order to get rid of the '@' (and the time, if you wish), just delete everything following and including the @ symbol, so that you end up with:
<span class="meta">" title="Category: <?php the_category() ?>">[<?php the_category() ?>] — <?php the_author() ?></span>