• Closed
  • Sapere Aude
    Spectator
    06.09.2017 at 17:25 #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
    07.09.2017 at 08:06 #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