Viewing 1 replies (of 1 total)
  • Hello,

    Use a custom CSS plugin like this one.

    To hide the author and date on single post view paste this code in the plugin:

    .single .entry-meta {
         display: none;
    }

    If you also want to disable the date from the index posts, the whole code will be this:

    .single .entry-meta,
    .posted-on {
         display: none;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Disable Author / Date’ is closed to new replies.