user2639830
user2639830

Reputation:

Removing meta information from posts on wordpress

I want to remove the post author and date on Wordpress posts. However, I'm not sure how to hide this information. I have tried the following. Appearance -> Customize -> Theme Options -> Single Post Settings and then adding the following snippet of code .single-post-meta{ display:none;} inside both Ad Code - Below Post Title and Ad Code - Below Post Content. However, this does not work. How to fix?

Upvotes: 0

Views: 179

Answers (2)

user2639830
user2639830

Reputation:

I found a good work around.

Appearances-> Editor -> Style.css

Style.css can fix most display problems. Specifically for my problem, I scrolled down to where it said .post-info {...} and changed the display tag from display: block to diplay: none.

Upvotes: 1

shipshape
shipshape

Reputation: 1742

Try putting that CSS code in Appearance -> Customize -> Additional CSS instead.

Upvotes: 0

Related Questions