mickfealty
Member
Posted 2 years ago #
I'm using the Ocean Mist template, and I want to know if it is possible to hide the date stamp and my name from the title field for each post: simply because it looks very cluttered with it all in the one field.
If it were possible I would also like to make sure the tags only appear on the pages of individual posts. Can any of this be done?
PS: Do my links really HAVE appear in alphabetical order? If not, how can I impose my preferred order?
mickfealty,
Of course this can be done. Open single.php and remove the following line of code to remove your name:
<p>Posted by: <strong><?php the_author() ?></strong></p>
To remove the date delete this line:
<small><?php the_time('jS M, Y') ?></small>
The link order can be modified with the My Link Order plugin: http://wordpress.org/extend/plugins/my-link-order/.
Hi,
You need to edit the index.php file and remove this code from there:
<?php the_author() ?>
and
<?php the_time('jS M, Y') ?>
Thanks,
Shane G.