Removing specific author / author from blog posts

Ideas! We love to hear them. Your ideas are the features we add next.
Post Reply
Cthomas3487
AllPro Expert
AllPro Expert
Posts: 35
meble kuchenne Mikołów Knurów Czechowice-Dziedzice
Joined: Tue May 14, 2019 7:26 am
Website: www.socialreachagency.com

Removing specific author / author from blog posts

Post by Cthomas3487 »

I would like to request a feature for past/already created blog posts.

I would like to be able to remove a specific author (example: a past employee) from previous blog posts,
or
I would like to be able to remove the author's option for blog posts altogether without having to go into each individual blog post to remove the author as this is inconvenient if I have over 50+ blog posts to sift through.
User avatar
NoahBaldwin
Support Team
Support Team
Posts: 117
Joined: Fri Jan 04, 2019 11:21 am
Website: www.allprowebtools.com

Re: Removing specific author / author from blog posts

Post by NoahBaldwin »

Hello!

You can remove author sections from all blog posts using CSS. First, to remove the author section from the blog post itself, use the following CSS and class name:

Code: Select all

.authorship.well {
	display: none;
}
In order to remove the blog author from the collection of blog posts, use the following CSS and class name:

Code: Select all

.blogauthor {
	display:none;
}
Please add both of these CSS changes to your CSS file to remove author sections from all blogs.
Post Reply