How do I control what "administrative" information is displayed as part of a post; e.g., "Posted by...", date, etc.?
Thanks
How do I control what "administrative" information is displayed as part of a post; e.g., "Posted by...", date, etc.?
Thanks
In your theme. (index.php, page.php, single.php)
functions like the_time, the_author, etc
If your theme uses a different css class for these items, you can add 'display: none;' in each class you want to hide.
For example, the theme I use has a <p class=postmetadata> tag. In my style.css file, there is:
.postmetadata {
clear: both;
font-size: 0.9em;
If I change that to:
.postmetadata {
display: none;
clear: both;
font-size: 0.9em;
it will hide the metadata.
This topic has been closed to new replies.