Forums

Newbie: Need to disable post name/date/etc display (3 posts)

  1. lwoods
    Member
    Posted 3 years ago #

    How do I control what "administrative" information is displayed as part of a post; e.g., "Posted by...", date, etc.?

    Thanks

  2. Rev. Voodoo
    Volunteer Moderator
    Posted 3 years ago #

    In your theme. (index.php, page.php, single.php)

    functions like the_time, the_author, etc

  3. vtxyzzy
    Member
    Posted 3 years ago #

    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.

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.