Removing specific author / author from blog posts

Ideas! We love to hear them. Your ideas are the features we add next.
Post Reply
AllPro Expert
AllPro Expert
Joined: Tue May 14, 2019 7:26 am
Website: www.socialreachagency.com

Removing specific author / author from blog posts

  • Quote

Post

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.
Support Team
Support Team
Website: www.allprowebtools.com

Re: Removing specific author / author from blog posts

  • Quote

Post

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