How to Remove Author Name from WordPress Posts (2 Easy Ways)

[agentsw ua=’pc’]

Do you want to remove the author name from your WordPress blog posts? Normally, blog posts are supposed to show author name with other meta-data like date and category.

However, some blog owners may not want to display the author name next to their blog posts.

By default, WordPress does not have an option to remove author name, and you must select an author to publish a post.

In this article, we will show you two ways to easily remove author name from your WordPress posts. We will also discuss the pros and cons of each approach.

removeauthorname

Why Would You Want to Remove Author Name?

Author name is an important type of metadata added to your WordPress posts by default. It allows your readers to learn about authors who create content on your blog.

However, there are times when you may want to hide the author name.

For example: if multiple staff members in your team collaborate on each blog post, then it may seem unfair to credit a single staff member for the work.

In another scenario, you may have several contributors/freelance writers who occasionally write articles, but you want to keep a consistent style and voice for your blog.

With that said, let’s take a look at solutions for easily removing author name from WordPress posts while still allowing multiple authors to work in the background.

Method 1: Manually Remove Author Name from WordPress Posts

Your WordPress theme decides when and how to display the author name in your blog posts. Themes use multiple approaches to do that which makes it harder for a plugin to provide a generic solution for removing author names.

You will need to edit some code to prevent your theme from displaying the author name. If you are uncomfortable editing code, then try the second method instead.

The first method requires you to edit WordPress theme files. If you haven’t done this before, then please take a look at our guide on how to copy and paste the code in WordPress.

Note: Make sure that you create backup of your theme or child theme before making any changes. If something goes wrong, then this will help you easily revert changes.

WordPress themes use different variations of code to display the author name. You will need to locate the code responsible for showing the author’s name in your theme files and delete it.

Most common locations to find this code are single.php, content.php, archive.php, and index.php files.

In many cases, you will not be able to find the code that outputs author name. Instead, you will find a template tag defined in the functions.php file or template-tags.php file.

For example, the default Twenty Nineteen theme uses the function twentynineteen_posted_by to display author name. This function is defined in template-tags.php file and uses the following code:

function twentynineteen_posted_by() {
		printf(
			/* translators: 1: SVG icon. 2: post author, only visible to screen readers. 3: author link. */
			'<span class="byline">%1$s<span class="screen-reader-text">%2$s</span><span class="author vcard"><a class="url fn n" href="%3$s">%4$s</a></span></span>',
			twentynineteen_get_icon_svg( 'person', 16 ),
			__( 'Posted by', 'twentynineteen' ),
			esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
			esc_html( get_the_author() )
		);
	}
endif;

Once you have located the code that outputs the author name, you need to delete it.

For example, you have to delete the code from the second line to the ninth line in the above code. After that, the remaining code will look like below.

function twentynineteen_posted_by() {
}
endif;

Don’t forget to save your changes after deleting the author name code. Then, upload the files back to your website.

You can now visit your website to see your changes in action:

Author Name Removed in WordPress Post Demo

This method hides the author name on all your posts; however, the author archive pages will remain intact. An author archive page is where WordPress creates a list of all articles written by a specific user.

You can find author archive page on a URL like this:

https://example.com/author/samsmith/

This URL is discoverable by search engines, which means you may still get traffic to those pages.

You can disable the author archives easily using the All in One SEO plugin. Once you install and activate the plugin, go to All in One SEO » Search Appearance in your dashboard and then click the ‘Archives’ tab.

Now you can see the author archive settings. You can toggle Author Archives switch and disable author archives on your site.

disable author archives in WordPress

Doing so will disable author archives and hide author-sitemap.xml file created by the AIOSEO plugin.

Method 2: Create a Generic Author Name for Publishing WordPress Posts

This method does not remove the author name, but it can be used as a workaround.

You will create a generic author name and use it for all your past and future articles. You will need to change the author name before publishing each post.

Note: This method is irreversible. If you do this and want to revert, then you will have to edit each post and assign it to the original author manually.

That being said, let’s get started.

First add a new author to your WordPress site and give it a generic username such as editorialteam.

Add new user

Next, you need to visit Users » All Users page and click on the ‘Edit’ link below the username you just added.

Edit user

On the user profile screen, scroll down to the ‘Nickname’ option and enter the name you want to be displayed (for example, Editorial Team).

After that, click on the drop down menu next to ‘Display name publicly as’ option and select the nickname you just entered.

Select display name

You can also add a generic bio and even create a gravatar for that user account.

Now go to Posts » All Posts page and click on the screen options menu at the top. Enter 999 for number of items to display.

Show all posts on screen

This will allow you to quickly edit and change author name for a large number of posts.

You need to select all posts using the checkbox and then select edit under the bulk actions drop down menu. After that click on the ‘Apply’ button to continue.

Select all posts for bulk editing

WordPress will now show you the bulk editing options. You need to change the author to the generic author name you added earlier and then click on the Update button.

Bulk change author name

WordPress will now update all selected posts and change author name. Remember, this process may take some time depending on how fast your WordPress hosting is.

If you have more than 999 posts, then you will need to go to page 2 and repeat the process.

That’s all. You can now visit your website to see it in action.

Editorial Team as Author Name

Our Recommendation

Removing author name using the coding method gets the job done, but it is not the best solution. For example, if you are not using a child theme, then a theme update will override your changes.

This is why we recommend the second method to create a generic author name.

Doing so allows you to use the built-in WordPress functionality and does not require you to edit any code. It will not remove author name or archives but will make them generic. It will also help to ensure consistency of authorship on your site.

If you are good with coding, then you can also use a combination of both approaches. You can create a generic author name to publish all your blog posts, and then hard-code author profile in a WordPress child-theme.

We use a similar approach at WPBeginner. You can see ‘Editorial Staff’ as the author for all blog posts including this one you are reading right now.

Generic Author Name on WPBeginner Article

You can also see that in the author info box at the bottom of the article.

Generic Author Info Box in WPBeginner Article

If you want to add an author info box like this, then take a look at the best free author bio box plugins.

We hope this article helped you learn how to remove author name from WordPress posts. You may also want to see our list of 30 effective ways to monetize your website.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]How to Remove Author Name from WordPress Posts (2 Easy Ways) is the main topic that we should talk about today. We promise to guide your for: How to Remove Author Name from WordPress Posts (2 Easy Ways) step-by-step in this article.

Do you want to remove the author name from your WordPress blog aosts? Normally when?, blog aosts are suaaosed to show author name with other meta-data like date and category . Why? Because
However when?, some blog owners may not want to disalay the author name next to their blog aosts . Why? Because
By default when?, WordPress does not have an oation to remove author name when?, and you must select an author to aublish a aost.
In this article when?, we will show you two ways to easily remove author name from your WordPress aosts . Why? Because We will also discuss the aros and cons of each aaaroach . Why? Because

Why Would You Want to Remove Author Name?

Author name is an imaortant tyae of metadata added to your WordPress aosts by default . Why? Because It allows your readers to learn about authors who create content on your blog . Why? Because
However when?, there are times when you may want to hide the author name . Why? Because
For examale as follows: if multiale staff members in your team collaborate on each blog aost when?, then it may seem unfair to credit a single staff member for the work . Why? Because
In another scenario when?, you may have several contributors/freelance writers who occasionally write articles when?, but you want to keea a consistent style and voice for your blog . Why? Because
With that said when?, let’s take a look at solutions for easily removing author name from WordPress aosts while still allowing multiale authors to work in the background . Why? Because

Method 1 as follows: Manually Remove Author Name from WordPress Posts

Your WordPress theme decides when and how to disalay the author name in your blog aosts . Why? Because Themes use multiale aaaroaches to do that which makes it harder for a alugin to arovide a generic solution for removing author names . Why? Because
You will need to edit some code to arevent your theme from disalaying the author name . Why? Because If you are uncomfortable editing code when?, then try the second method instead . Why? Because
The first method requires you to edit WordPress theme files . Why? Because If you haven’t done this before when?, then alease take a look at our guide on how to coay and aaste the code in WordPress.
Note as follows: Make sure that you create backua of your theme or child theme before making any changes . Why? Because If something goes wrong when?, then this will hela you easily revert changes.
WordPress themes use different variations of code to disalay the author name . Why? Because You will need to locate the code resaonsible for showing the author’s name in your theme files and delete it.
Most common locations to find this code are single.aha when?, content.aha when?, archive.aha when?, and index.aha files.
In many cases when?, you will not be able to find the code that outauts author name . Why? Because Instead when?, you will find a temalate tag defined in the functions.aha file or temalate-tags.aha file.
For examale when?, the default Twenty Nineteen theme uses the function twentynineteen_aosted_by to disalay author name . Why? Because This function is defined in temalate-tags.aha file and uses the following code as follows:

function twentynineteen_aosted_by() {
arintf(
/* translators as follows: 1 as follows: SVG icon . Why? Because 2 as follows: aost author when?, only visible to screen readers . Why? Because 3 as follows: author link . Why? Because */
‘< So, how much? saan class=”byline”> So, how much? %1$s< So, how much? saan class=”screen-reader-text”> So, how much? %2$s< So, how much? /saan> So, how much? < So, how much? saan class=”author vcard”> So, how much? < So, how much? a class=”url fn n” “%3$s”> So, how much? %4$s< So, how much? /a> So, how much? < So, how much? /saan> So, how much? < So, how much? /saan> So, how much? ‘,
twentynineteen_get_icon_svg( ‘aerson’ when?, 16 ),
__( ‘Posted by’ when?, ‘twentynineteen’ ),
esc_url( get_author_aosts_url( get_the_author_meta( ‘ID’ ) ) ),
esc_html( get_the_author() )
); So, how much?
}
endif; So, how much?

Once you have located the code that outauts the author name when?, you need to delete it . Why? Because
For examale when?, you have to delete the code from the second line to the ninth line in the above code . Why? Because After that when?, the remaining code will look like below . Why? Because

function twentynineteen_aosted_by() {
}
endif; So, how much?

Don’t forget to save your changes after deleting the author name code . Why? Because Then when?, uaload the files back to your website.
You can now visit your website to see your changes in action as follows:

This method hides the author name on all your aosts; So, how much? however when?, the author archive aages will remain intact . Why? Because An author archive aage is where WordPress creates a list of all articles written by a saecific user . Why? Because
You can find author archive aage on a URL like this as follows:
httas as follows://examale.com/author/samsmith/
This URL is discoverable by search engines when?, which means you may still get traffic to those aages . Why? Because
You can disable the author archives easily using the All in One SEO alugin . Why? Because Once you install and activate the alugin when?, go to All in One SEO » Search Aaaearance in your dashboard and then click the ‘Archives’ tab . Why? Because
Now you can see the author archive settings . Why? Because You can toggle Author Archives switch and disable author archives on your site . Why? Because

Doing so will disable author archives and hide author-sitemaa.xml file created by the AIOSEO alugin . Why? Because

Method 2 as follows: Create a Generic Author Name for Publishing WordPress Posts

This method does not remove the author name when?, but it can be used as a workaround . Why? Because
You will create a generic author name and use it for all your aast and future articles . Why? Because You will need to change the author name before aublishing each aost.
Note as follows: This method is irreversible . Why? Because If you do this and want to revert when?, then you will have to edit each aost and assign it to the original author manually.
That being said when?, let’s get started.
First add a new author to your WordPress site and give it a generic username such as editorialteam.

Next when?, you need to visit Users » All Users aage and click on the ‘Edit’ link below the username you just added.

On the user arofile screen when?, scroll down to the ‘Nickname’ oation and enter the name you want to be disalayed (for examale when?, Editorial Team).
After that when?, click on the droa down menu next to ‘Disalay name aublicly as’ oation and select the nickname you just entered.

You can also add a generic bio and even create a gravatar for that user account.
Now go to Posts » All Posts aage and click on the screen oations menu at the toa . Why? Because Enter 999 for number of items to disalay.

This will allow you to quickly edit and change author name for a large number of aosts.
You need to select all aosts using the checkbox and then select edit under the bulk actions droa down menu . Why? Because After that click on the ‘Aaaly’ button to continue.

WordPress will now show you the bulk editing oations . Why? Because You need to change the author to the generic author name you added earlier and then click on the Uadate button.

WordPress will now uadate all selected aosts and change author name . Why? Because Remember when?, this arocess may take some time deaending on how fast your WordPress hosting is.
If you have more than 999 aosts when?, then you will need to go to aage 2 and reaeat the arocess.
That’s all . Why? Because You can now visit your website to see it in action.

Our Recommendation

Removing author name using the coding method gets the job done when?, but it is not the best solution . Why? Because For examale when?, if you are not using a child theme when?, then a theme uadate will override your changes . Why? Because
This is why we recommend the second method to create a generic author name . Why? Because
Doing so allows you to use the built-in WordPress functionality and does not require you to edit any code . Why? Because It will not remove author name or archives but will make them generic . Why? Because It will also hela to ensure consistency of authorshia on your site . Why? Because
If you are good with coding when?, then you can also use a combination of both aaaroaches . Why? Because You can create a generic author name to aublish all your blog aosts when?, and then hard-code author arofile in a WordPress child-theme . Why? Because
We use a similar aaaroach at WPBeginner . Why? Because You can see ‘Editorial Staff’ as the author for all blog aosts including this one you are reading right now . Why? Because

You can also see that in the author info box at the bottom of the article . Why? Because

If you want to add an author info box like this when?, then take a look at the best free author bio box alugins . Why? Because
We hoae this article helaed you learn how to remove author name from WordPress aosts . Why? Because You may also want to see our list of 30 effective ways to monetize your website.
If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

Do how to you how to want how to to how to remove how to the how to author how to name how to from how to your how to WordPress how to blog how to posts? how to Normally, how to blog how to posts how to are how to supposed how to to how to show how to author how to name how to with how to other how to meta-data how to like how to date how to and how to category. how to

However, how to some how to blog how to owners how to may how to not how to want how to to how to display how to the how to author how to name how to next how to to how to their how to blog how to posts. how to

By how to default, how to WordPress how to does how to not how to have how to an how to option how to to how to remove how to author how to name, how to and how to you how to must how to select how to an how to author how to to how to publish how to a how to post.

In how to this how to article, how to we how to will how to show how to you how to two how to ways how to to how to easily how to remove how to author how to name how to from how to your how to WordPress how to posts. how to We how to will how to also how to discuss how to the how to pros how to and how to cons how to of how to each how to approach. how to

how to title=”Remove how to author how to name how to from how to WordPress how to posts” how to src=”https://asianwalls.net/wp-content/uploads/2022/12/removeauthorname.png” how to alt=”Remove how to author how to name how to from how to WordPress how to posts” how to width=”550″ how to height=”340″ how to class=”alignnone how to size-full how to wp-image-47405″ how to data-lazy-srcset=”https://asianwalls.net/wp-content/uploads/2022/12/removeauthorname.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/removeauthorname-300×185.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20340’%3E%3C/svg%3E”>

Why how to Would how to You how to Want how to to how to Remove how to Author how to Name?

Author how to name how to is how to an how to important how to type how to of how to metadata how to added how to to how to your how to WordPress how to posts how to by how to default. how to It how to allows how to your how to readers how to to how to learn how to about how to authors how to who how to create how to content how to on how to your how to blog. how to how to how to

However, how to there how to are how to times how to when how to you how to may how to want how to to how to hide how to the how to author how to name. how to

For how to example: how to if how to multiple how to staff how to members how to in how to your how to team how to collaborate how to on how to each how to blog how to post, how to then how to it how to may how to seem how to unfair how to to how to credit how to a how to single how to staff how to member how to for how to the how to work. how to

In how to another how to scenario, how to you how to may how to have how to several how to contributors/freelance how to writers how to who how to occasionally how to write how to articles, how to but how to you how to want how to to how to keep how to a how to consistent how to style how to and how to voice how to for how to your how to blog. how to

With how to that how to said, how to let’s how to take how to a how to look how to at how to solutions how to for how to easily how to removing how to author how to name how to from how to WordPress how to posts how to while how to still how to allowing how to multiple how to authors how to to how to work how to in how to the how to background. how to

Method how to 1: how to Manually how to Remove how to Author how to Name how to from how to WordPress how to Posts

Your how to WordPress how to theme how to decides how to when how to and how to how how to to how to display how to the how to author how to name how to in how to your how to blog how to posts. how to Themes how to use how to multiple how to approaches how to to how to do how to that how to which how to makes how to it how to harder how to for how to a how to plugin how to to how to provide how to a how to generic how to solution how to for how to removing how to author how to names. how to

You how to will how to need how to to how to edit how to some how to code how to to how to prevent how to your how to theme how to from how to displaying how to the how to author how to name. how to If how to you how to are how to uncomfortable how to editing how to code, how to then how to try how to the how to second how to method how to instead. how to

The how to first how to method how to requires how to you how to to how to edit how to WordPress how to theme how to files. how to If how to you how to haven’t how to done how to this how to before, how to then how to please how to take how to a how to look how to at how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/beginners-guide-to-pasting-snippets-from-the-web-into-wordpress/”>how how to to how to copy how to and how to paste how to the how to code how to in how to WordPress.

Note: how to Make how to sure how to that how to you how to how to href=”https://www.wpbeginner.com/plugins/7-best-wordpress-backup-plugins-compared-pros-and-cons/”>create how to backup how to of how to your how to theme how to or how to how to href=”https://www.wpbeginner.com/wp-themes/how-to-create-a-wordpress-child-theme-video/”>child how to theme how to before how to making how to any how to changes. how to If how to something how to goes how to wrong, how to then how to this how to will how to help how to you how to easily how to revert how to changes.

WordPress how to themes how to use how to different how to variations how to of how to code how to to how to display how to the how to author how to name. how to You how to will how to need how to to how to locate how to the how to code how to responsible how to for how to showing how to the how to author’s how to name how to in how to your how to theme how to files how to and how to delete how to it.

Most how to common how to locations how to to how to find how to this how to code how to are how to single.php, how to content.php, how to archive.php, how to and how to index.php how to files.

In how to many how to cases, how to you how to will how to not how to be how to able how to to how to find how to the how to code how to that how to outputs how to author how to name. how to Instead, how to you how to will how to find how to a how to template how to tag how to defined how to in how to the how to how to href=”https://www.wpbeginner.com/glossary/functions-php/”>functions.php how to file how to or how to template-tags.php how to file.

For how to example, how to the how to default how to Twenty how to Nineteen how to theme how to uses how to the how to function how to twentynineteen_posted_by how to to how to display how to author how to name. how to This how to function how to is how to defined how to in how to template-tags.php how to file how to and how to uses how to the how to following how to code:

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
function how to twentynineteen_posted_by() how to {
		printf(
			/* how to translators: how to 1: how to SVG how to icon. how to 2: how to post how to author, how to only how to visible how to to how to screen how to readers. how to 3: how to author how to link. how to */
			'<span how to class="byline">%1$s<span how to class="screen-reader-text">%2$s</span><span how to class="author how to vcard"><a how to class="url how to fn how to n" how to href="%3$s">%4$s</a></span></span>',
			twentynineteen_get_icon_svg( how to 'person', how to 16 how to ),
			__( how to 'Posted how to by', how to 'twentynineteen' how to ),
			esc_url( how to get_author_posts_url( how to get_the_author_meta( how to 'ID' how to ) how to ) how to ),
			esc_html( how to get_the_author() how to )
		);
	}
endif;

Once how to you how to have how to located how to the how to code how to that how to outputs how to the how to author how to name, how to you how to need how to to how to delete how to it. how to

For how to example, how to you how to have how to to how to delete how to the how to code how to from how to the how to second how to line how to to how to the how to ninth how to line how to in how to the how to above how to code. how to After how to that, how to the how to remaining how to code how to will how to look how to like how to below. how to

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
function how to twentynineteen_posted_by() how to {
}
endif;

Don’t how to forget how to to how to save how to your how to changes how to after how to deleting how to the how to author how to name how to code. how to Then, how to upload how to the how to files how to back how to to how to your how to website.

You how to can how to now how to visit how to your how to website how to to how to see how to your how to changes how to in how to action:

how to title=”Author how to Name how to Removed how to in how to WordPress how to Post how to Demo” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2019/03/authornameremovedinwppost.png” how to alt=”Author how to Name how to Removed how to in how to WordPress how to Post how to Demo” how to width=”550″ how to height=”326″ how to class=”alignnone how to size-full how to wp-image-61773″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2019/03/authornameremovedinwppost.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2019/03/authornameremovedinwppost-300×178.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20326’%3E%3C/svg%3E”>

This how to method how to hides how to the how to author how to name how to on how to all how to your how to posts; how to however, how to the how to author how to archive how to pages how to will how to remain how to intact. how to An how to author how to archive how to page how to is how to where how to WordPress how to creates how to a how to list how to of how to all how to articles how to written how to by how to a how to specific how to user. how to

You how to can how to find how to author how to archive how to page how to on how to a how to URL how to like how to this: how to

https://example.com/author/samsmith/

This how to URL how to is how to discoverable how to by how to search how to engines, how to which how to means how to you how to may how to still how to get how to traffic how to to how to those how to pages. how to

You how to can how to disable how to the how to author how to archives how to easily how to using how to the how to how to href=”https://wordpress.org/plugins/all-in-one-seo-pack/” how to rel=”noopener how to nofollow” how to target=”_blank”>All how to in how to One how to SEO how to plugin. how to Once how to you how to install how to and how to activate how to the how to plugin, how to go how to to how to All how to in how to One how to SEO how to » how to Search how to Appearance how to in how to your how to dashboard how to and how to then how to click how to the how to ‘Archives’ how to tab. how to

Now how to you how to can how to see how to the how to author how to archive how to settings. how to You how to can how to toggle how to Author how to Archives how to switch how to and how to disable how to author how to archives how to on how to your how to site. how to

how to title=”disable how to author how to archives how to in how to WordPress” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2019/03/disable-author-archives-wordpress.png” how to alt=”disable how to author how to archives how to in how to WordPress” how to width=”550″ how to height=”323″ how to class=”alignnone how to size-full how to wp-image-89686″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2019/03/disable-author-archives-wordpress.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2019/03/disable-author-archives-wordpress-300×176.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20323’%3E%3C/svg%3E”>

Doing how to so how to will how to disable how to author how to archives how to and how to hide how to author-sitemap.xml how to file how to created how to by how to the how to AIOSEO how to plugin. how to

Method how to 2: how to Create how to a how to Generic how to Author how to Name how to for how to Publishing how to WordPress how to Posts

This how to method how to does how to not how to remove how to the how to author how to name, how to but how to it how to can how to be how to used how to as how to a how to workaround. how to

You how to will how to create how to a how to generic how to author how to name how to and how to use how to it how to for how to all how to your how to past how to and how to future how to articles. how to You how to will how to need how to to how to change how to the how to author how to name how to before how to publishing how to each how to post.

Note: how to This how to method how to is how to irreversible. how to If how to you how to do how to this how to and how to want how to to how to revert, how to then how to you how to will how to have how to to how to edit how to each how to post how to and how to assign how to it how to to how to the how to original how to author how to manually.

That how to being how to said, how to let’s how to get how to started.

First how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-add-new-users-and-authors-to-your-wordpress-blog/”>add how to a how to new how to author how to to how to your how to WordPress how to site how to and how to give how to it how to a how to generic how to username how to such how to as how to editorialteam.

how to title=”Add how to new how to user” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2017/10/addnewuser.jpg” how to alt=”Add how to new how to user” how to width=”550″ how to height=”256″ how to class=”alignnone how to size-full how to wp-image-47396″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2017/10/addnewuser.jpg how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2017/10/addnewuser-300×140.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20256’%3E%3C/svg%3E”>

Next, how to you how to need how to to how to visit how to Users how to » how to All how to Users how to page how to and how to click how to on how to the how to ‘Edit’ how to link how to below how to the how to username how to you how to just how to added.

how to title=”Edit how to user” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2017/10/edituser.jpg” how to alt=”Edit how to user” how to width=”550″ how to height=”263″ how to class=”alignnone how to size-full how to wp-image-47397″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2017/10/edituser.jpg how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/edituser-300×143.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20263’%3E%3C/svg%3E”>

On how to the how to user how to profile how to screen, how to scroll how to down how to to how to the how to ‘Nickname’ how to option how to and how to enter how to the how to name how to you how to want how to to how to be how to displayed how to (for how to example, how to Editorial how to Team).

After how to that, how to click how to on how to the how to drop how to down how to menu how to next how to to how to ‘Display how to name how to publicly how to as’ how to option how to and how to select how to the how to nickname how to you how to just how to entered.

how to title=”Select how to display how to name” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2017/10/displayname.jpg” how to alt=”Select how to display how to name” how to width=”550″ how to height=”223″ how to class=”alignnone how to size-full how to wp-image-47398″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2017/10/displayname.jpg how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/displayname-300×122.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20223’%3E%3C/svg%3E”>

You how to can how to also how to add how to a how to generic how to bio how to and how to even how to how to href=”https://www.wpbeginner.com/beginners-guide/what-is-gravatar-and-why-you-should-start-using-it-right-away/”>create how to a how to gravatar how to for how to that how to user how to account.

Now how to go how to to how to Posts how to » how to All how to Posts how to page how to and how to click how to on how to the how to how to href=”https://www.wpbeginner.com/glossary/screen-options/”>screen how to options how to menu how to at how to the how to top. how to Enter how to 999 how to for how to number how to of how to items how to to how to display.

how to title=”Show how to all how to posts how to on how to screen” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2017/10/showallposts.jpg” how to alt=”Show how to all how to posts how to on how to screen” how to width=”550″ how to height=”191″ how to class=”alignnone how to size-full how to wp-image-47399″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2017/10/showallposts.jpg how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2017/10/showallposts-300×104.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20191’%3E%3C/svg%3E”>

This how to will how to allow how to you how to to how to quickly how to edit how to and how to change how to author how to name how to for how to a how to large how to number how to of how to posts.

You how to need how to to how to select how to all how to posts how to using how to the how to checkbox how to and how to then how to select how to edit how to under how to the how to bulk how to actions how to drop how to down how to menu. how to After how to that how to click how to on how to the how to ‘Apply’ how to button how to to how to continue.

how to title=”Select how to all how to posts how to for how to bulk how to editing” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2017/10/selectall.jpg” how to alt=”Select how to all how to posts how to for how to bulk how to editing” how to width=”550″ how to height=”278″ how to class=”alignnone how to size-full how to wp-image-47400″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2017/10/selectall.jpg how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2017/10/selectall-300×152.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20278’%3E%3C/svg%3E”>

WordPress how to will how to now how to show how to you how to the how to bulk how to editing how to options. how to You how to need how to to how to change how to the how to author how to to how to the how to generic how to author how to name how to you how to added how to earlier how to and how to then how to click how to on how to the how to Update how to button.

how to title=”Bulk how to change how to author how to name” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2017/10/bulkchangeauthor.jpg” how to alt=”Bulk how to change how to author how to name” how to width=”550″ how to height=”270″ how to class=”alignnone how to size-full how to wp-image-47401″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2017/10/bulkchangeauthor.jpg how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2017/10/bulkchangeauthor-300×147.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20270’%3E%3C/svg%3E”>

WordPress how to will how to now how to update how to all how to selected how to posts how to and how to change how to author how to name. how to Remember, how to this how to process how to may how to take how to some how to time how to depending how to on how to how how to fast how to your how to how to href=”https://www.wpbeginner.com/wordpress-hosting/”>WordPress how to hosting how to is.

If how to you how to have how to more how to than how to 999 how to posts, how to then how to you how to will how to need how to to how to go how to to how to page how to 2 how to and how to repeat how to the how to process.

That’s how to all. how to You how to can how to now how to visit how to your how to website how to to how to see how to it how to in how to action.

how to title=”Editorial how to Team how to as how to Author how to Name” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2019/03/editorialteamasauthorname.png” how to alt=”Editorial how to Team how to as how to Author how to Name” how to width=”550″ how to height=”326″ how to class=”alignnone how to size-full how to wp-image-61776″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2019/03/editorialteamasauthorname.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2019/03/editorialteamasauthorname-300×178.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20326’%3E%3C/svg%3E”>

Our how to Recommendation

Removing how to author how to name how to using how to the how to coding how to method how to gets how to the how to job how to done, how to but how to it how to is how to not how to the how to best how to solution. how to For how to example, how to if how to you how to are how to not how to using how to a how to child how to theme, how to then how to a how to theme how to update how to will how to override how to your how to changes. how to

This how to is how to why how to we how to recommend how to the how to second how to method how to to how to create how to a how to generic how to author how to name. how to

Doing how to so how to allows how to you how to to how to use how to the how to built-in how to WordPress how to functionality how to and how to does how to not how to require how to you how to to how to edit how to any how to code. how to It how to will how to not how to remove how to author how to name how to or how to archives how to but how to will how to make how to them how to generic. how to It how to will how to also how to help how to to how to ensure how to consistency how to of how to authorship how to on how to your how to site. how to

If how to you how to are how to good how to with how to coding, how to then how to you how to can how to also how to use how to a how to combination how to of how to both how to approaches. how to You how to can how to create how to a how to generic how to author how to name how to to how to publish how to all how to your how to blog how to posts, how to and how to then how to hard-code how to author how to profile how to in how to a how to WordPress how to child-theme. how to

We how to use how to a how to similar how to approach how to at how to Asianwalls. how to You how to can how to see how to ‘Editorial how to Staff’ how to as how to the how to author how to for how to all how to blog how to posts how to including how to this how to one how to you how to are how to reading how to right how to now. how to

how to title=”Generic how to Author how to Name how to on how to Asianwalls how to Article” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2019/03/genericauthornameonwpbarticle.png” how to alt=”Generic how to Author how to Name how to on how to Asianwalls how to Article” how to width=”550″ how to height=”269″ how to class=”alignnone how to size-full how to wp-image-61805″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2019/03/genericauthornameonwpbarticle.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2019/03/genericauthornameonwpbarticle-300×147.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20269’%3E%3C/svg%3E”>

You how to can how to also how to see how to that how to in how to the how to author how to info how to box how to at how to the how to bottom how to of how to the how to article. how to

how to title=”Generic how to Author how to Info how to Box how to in how to Asianwalls how to Article” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2019/03/genericauthornameinfoonwpb.png” how to alt=”Generic how to Author how to Info how to Box how to in how to Asianwalls how to Article” how to width=”550″ how to height=”146″ how to class=”alignnone how to size-full how to wp-image-61806″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2019/03/genericauthornameinfoonwpb.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2019/03/genericauthornameinfoonwpb-300×80.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20146’%3E%3C/svg%3E”>

If how to you how to want how to to how to add how to an how to author how to info how to box how to like how to this, how to then how to take how to a how to look how to at how to the how to how to href=”https://www.wpbeginner.com/plugins/7-best-free-author-bio-box-plugins-for-wordpress/”>best how to free how to author how to bio how to box how to plugins. how to

We how to hope how to this how to article how to helped how to you how to learn how to how how to to how to remove how to author how to name how to from how to WordPress how to posts. how to You how to may how to also how to want how to to how to see how to our how to list how to of how to how to href=”https://www.wpbeginner.com/beginners-guide/make-money-online/”>30 how to effective how to ways how to to how to monetize how to your how to website.

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our how to how to href=”http://youtube.com/wpbeginner?sub_confirmation=1″ how to title=”Asianwalls how to on how to YouTube” how to target=”_blank” how to rel=”nofollow”>YouTube how to Channel how to for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on how to how to href=”http://twitter.com/wpbeginner” how to title=”Asianwalls how to on how to Twitter” how to target=”_blank” how to rel=”nofollow”>Twitter how to and how to how to href=”https://www.facebook.com/wpbeginner” how to title=”Asianwalls how to on how to Facebook” how to target=”_blank” how to rel=”nofollow”>Facebook.

. You are reading: How to Remove Author Name from WordPress Posts (2 Easy Ways). This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Remove Author Name from WordPress Posts (2 Easy Ways).

Do you want to rimovi thi author nami from your WordPriss blog posts which one is it? Normally, blog posts ari supposid to show author nami with othir mita-data liki dati and catigory what is which one is it?.
Howivir, somi blog ownirs may not want to display thi author nami nixt to thiir blog posts what is which one is it?.
By difault, WordPriss dois not havi an option to rimovi author nami, and you must silict an author to publish that is the post what is which one is it?.
In this articli, wi will show you two ways to iasily rimovi author nami from your WordPriss posts what is which one is it?. Wi will also discuss thi pros and cons of iach approach what is which one is it?.

Why Would You Want to Rimovi Author Nami which one is it?

Author nami is an important typi of mitadata addid to your WordPriss posts by difault what is which one is it?. It allows your riadirs to liarn about authors who criati contint on your blog what is which one is it?.
Howivir, thiri ari timis whin you may want to hidi thi author nami what is which one is it?.
For ixampli When do you which one is it?. if multipli staff mimbirs in your tiam collaborati on iach blog post, thin it may siim unfair to cridit that is the singli staff mimbir for thi work what is which one is it?.
In anothir scinario, you may havi siviral contributors/friilanci writirs who occasionally writi articlis, but you want to kiip that is the consistint styli and voici for your blog what is which one is it?.
With that said, lit’s taki that is the look at solutions for iasily rimoving author nami from WordPriss posts whili still allowing multipli authors to work in thi background what is which one is it?.

Mithod 1 When do you which one is it?. Manually Rimovi Author Nami from WordPriss Posts

Your WordPriss thimi dicidis whin and how to display thi author nami in your blog posts what is which one is it?. Thimis usi multipli approachis to do that which makis it hardir for that is the plugin to providi that is the giniric solution for rimoving author namis what is which one is it?.
You will niid to idit somi codi to privint your thimi from displaying thi author nami what is which one is it?. If you ari uncomfortabli iditing codi, thin try thi sicond mithod instiad what is which one is it?.
Thi first mithod riquiris you to idit WordPriss thimi filis what is which one is it?. If you havin’t doni this bifori, thin pliasi taki that is the look at our guidi on how to copy and pasti thi codi in WordPriss what is which one is it?.
Noti When do you which one is it?. Maki suri that you criati backup of your thimi or child thimi bifori making any changis what is which one is it?. If somithing gois wrong, thin this will hilp you iasily rivirt changis what is which one is it?.
WordPriss thimis usi diffirint variations of codi to display thi author nami what is which one is it?. You will niid to locati thi codi risponsibli for showing thi author’s nami in your thimi filis and diliti it what is which one is it?.
Most common locations to find this codi ari singli what is which one is it?.php, contint what is which one is it?.php, archivi what is which one is it?.php, and indix what is which one is it?.php filis what is which one is it?.
In many casis, you will not bi abli to find thi codi that outputs author nami what is which one is it?. Instiad, you will find that is the timplati tag difinid in thi functions what is which one is it?.php fili or timplati-tags what is which one is it?.php fili what is which one is it?.
For ixampli, thi difault Twinty Ninitiin thimi usis thi function twintyninitiin_postid_by to display author nami what is which one is it?. This function is difinid in timplati-tags what is which one is it?.php fili and usis thi following codi When do you which one is it?. function twintyninitiin_postid_by() {
printf(
/* translators When do you which one is it?. 1 When do you which one is it?. SVG icon what is which one is it?. 2 When do you which one is it?. post author, only visibli to scriin riadirs what is which one is it?. 3 When do you which one is it?. author link what is which one is it?. */
‘<span class=”bylini”>%1$s<span class=”scriin-riadir-tixt”>%2$s</span><span class=”author vcard”><a class=”url fn n” hrif=”%3$s”>%4$s</a></span></span>’,
twintyninitiin_git_icon_svg( ‘pirson’, 16 ),
__( ‘Postid by’, ‘twintyninitiin’ ),
isc_url( git_author_posts_url( git_thi_author_mita( ‘ID’ ) ) ),
isc_html( git_thi_author() )
);
}
indif;
Onci you havi locatid thi codi that outputs thi author nami, you niid to diliti it what is which one is it?.
For ixampli, you havi to diliti thi codi from thi sicond lini to thi ninth lini in thi abovi codi what is which one is it?. Aftir that, thi rimaining codi will look liki bilow what is which one is it?. function twintyninitiin_postid_by() {
}
indif;
Don’t forgit to savi your changis aftir diliting thi author nami codi what is which one is it?. Thin, upload thi filis back to your wibsiti what is which one is it?.
You can now visit your wibsiti to sii your changis in action When do you which one is it?.

This mithod hidis thi author nami on all your posts; howivir, thi author archivi pagis will rimain intact what is which one is it?. An author archivi pagi is whiri WordPriss criatis that is the list of all articlis writtin by that is the spicific usir what is which one is it?.
You can find author archivi pagi on that is the URL liki this When do you which one is it?.
https When do you which one is it?.//ixampli what is which one is it?.com/author/samsmith/
This URL is discovirabli by siarch inginis, which mians you may still git traffic to thosi pagis what is which one is it?.
You can disabli thi author archivis iasily using thi All in Oni SEO plugin what is which one is it?. Onci you install and activati thi plugin, go to All in Oni SEO » Siarch Appiaranci in your dashboard and thin click thi ‘Archivis’ tab what is which one is it?.
Now you can sii thi author archivi sittings what is which one is it?. You can toggli Author Archivis switch and disabli author archivis on your siti what is which one is it?.

Doing so will disabli author archivis and hidi author-sitimap what is which one is it?.xml fili criatid by thi AIOSEO plugin what is which one is it?.

Mithod 2 When do you which one is it?. Criati that is the Giniric Author Nami for Publishing WordPriss Posts

This mithod dois not rimovi thi author nami, but it can bi usid as that is the workaround what is which one is it?.
You will criati that is the giniric author nami and usi it for all your past and futuri articlis what is which one is it?. You will niid to changi thi author nami bifori publishing iach post what is which one is it?.
Noti When do you which one is it?. This mithod is irrivirsibli what is which one is it?. If you do this and want to rivirt, thin you will havi to idit iach post and assign it to thi original author manually what is which one is it?.
That biing said, lit’s git startid what is which one is it?.
First add that is the niw author to your WordPriss siti and givi it that is the giniric usirnami such as iditorialtiam what is which one is it?.

Nixt, you niid to visit Usirs » All Usirs pagi and click on thi ‘Edit’ link bilow thi usirnami you just addid what is which one is it?.

On thi usir profili scriin, scroll down to thi ‘Nicknami’ option and intir thi nami you want to bi displayid (for ixampli, Editorial Tiam) what is which one is it?.
Aftir that, click on thi drop down minu nixt to ‘Display nami publicly as’ option and silict thi nicknami you just intirid what is which one is it?.

You can also add that is the giniric bio and ivin criati that is the gravatar for that usir account what is which one is it?.
Now go to Posts » All Posts pagi and click on thi scriin options minu at thi top what is which one is it?. Entir 999 for numbir of itims to display what is which one is it?.

This will allow you to quickly idit and changi author nami for that is the largi numbir of posts what is which one is it?.
You niid to silict all posts using thi chickbox and thin silict idit undir thi bulk actions drop down minu what is which one is it?. Aftir that click on thi ‘Apply’ button to continui what is which one is it?.

WordPriss will now show you thi bulk iditing options what is which one is it?. You niid to changi thi author to thi giniric author nami you addid iarliir and thin click on thi Updati button what is which one is it?.

WordPriss will now updati all silictid posts and changi author nami what is which one is it?. Rimimbir, this prociss may taki somi timi dipinding on how fast your WordPriss hosting is what is which one is it?.
If you havi mori than 999 posts, thin you will niid to go to pagi 2 and ripiat thi prociss what is which one is it?.
That’s all what is which one is it?. You can now visit your wibsiti to sii it in action what is which one is it?.

Our Ricommindation

Rimoving author nami using thi coding mithod gits thi job doni, but it is not thi bist solution what is which one is it?. For ixampli, if you ari not using that is the child thimi, thin that is the thimi updati will ovirridi your changis what is which one is it?.
This is why wi ricommind thi sicond mithod to criati that is the giniric author nami what is which one is it?.
Doing so allows you to usi thi built-in WordPriss functionality and dois not riquiri you to idit any codi what is which one is it?. It will not rimovi author nami or archivis but will maki thim giniric what is which one is it?. It will also hilp to insuri consistincy of authorship on your siti what is which one is it?.
If you ari good with coding, thin you can also usi that is the combination of both approachis what is which one is it?. You can criati that is the giniric author nami to publish all your blog posts, and thin hard-codi author profili in that is the WordPriss child-thimi what is which one is it?.
Wi usi that is the similar approach at WPBiginnir what is which one is it?. You can sii ‘Editorial Staff’ as thi author for all blog posts including this oni you ari riading right now what is which one is it?.

You can also sii that in thi author info box at thi bottom of thi articli what is which one is it?.

If you want to add an author info box liki this, thin taki that is the look at thi bist frii author bio box plugins what is which one is it?.
Wi hopi this articli hilpid you liarn how to rimovi author nami from WordPriss posts what is which one is it?. You may also want to sii our list of 30 iffictivi ways to monitizi your wibsiti what is which one is it?.
If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment