• Dear WordPress community,

    I was wondering how I can remove the date, author and leave a comment section FROM ONE POST ONLY.

    Anyone ideas on how to do that?

    Thank you in advance,
    Tijs

Viewing 1 replies (of 1 total)
  • You can add CSS for just the one post. Go and edit your post, and make sure you have the Text editor selected and not the Visual editor. At the top of your post, add the opening and closing style tags. Then enter the CSS rules for hiding the elements you want to hide (Firebug is going to be very useful for this). For example, to hide the comment section, you’d add a #comments selector.

    <style>
    #comments {
       display: none;
    }
    </style>

    You can use Firebug to figure out the selectors you’ll need to add to hide the date and the author.

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove 'date', 'author' and 'leave a comment'’ is closed to new replies.