How do I hide the author's name from posts.
-
I would like to hide the author’s name from blog posts, using the theme Brand New Day.
The blog I need help with is: (visible only to logged in users)
-
-
-
@mcbride2013, I tried the code @jcasta gave above and it removes the author from posts on this page.
.post-author { display: none; }On single post pages such as this one, I might suggest a little bit of a change to the code above such as the below, which will make it say, “POSTED ON” in front of the remaining date.
.post-author { display: none; } .post small:before { content: "POSTED "; } -
Oh yes, thank you, that has worked! I mustn’t have entered it correctly first time. Thank you both.
-
- The topic ‘How do I hide the author's name from posts.’ is closed to new replies.