• Closed
  • Sapere Aude
    Spectator
    September 6, 2017 at 5:25 pm #34715

    Is there a Style line that I could add to the html of individual posts that would effectively hide the date and “written by” display?

    vaibhav
    Spectator
    Posts: 287
    September 7, 2017 at 8:06 am #34721

    Hi

    Add below custom css for hiding the date and author name of the particular post.
    .post-188 .entry-meta .published,
    .post-188 .entry-meta .author {
    display: none;
    }

    In this code .post-188 is particular class name of particular post. Replace this class name by your particular post class name.

    Thank you