How to Limit Authors to their Own Posts in WordPress Admin

[agentsw ua=’pc’]

Do you want to limit authors to editing their own posts in WordPress?

If you run a multi-author site or allow guest posts, then it’s a good idea to restrict contributors to only see their own blog posts in the dashboard, and keep them from viewing the posts of other authors before they’re published.

In this article, we will show you how to limit authors to viewing and managing only their own posts in the WordPress dashboard.

how to limit authors to their own posts

Why Limit Authors to Their Own Posts?

By default, your WordPress website will show all posts and pages to all users, regardless of their user role in the admin area. Whether you’re an author, editor, contributor, or administrator, you can view all the articles.

This usually isn’t a problem if the authors are part of your company or team.

However, limiting people to view their own posts is useful in certain situations. For instance, if you run a multi-author website, then it can be useful to keep authors from seeing other writers’ articles in review.

That being said, let’s take a look at how you can limit authors to view their own posts in the WordPress admin.

Limit Authors to Their Own Posts Using a Plugin

Using a WordPress plugin, you can easily allow authors to see only their own posts without editing code.

For this tutorial, we will be using the PublishPress Permissions plugin. It’s a free plugin that lets you manage WordPress permissions, and works out of the box to limit writers to their own articles.

There is also a premium version available in PublishPress Pro bundle, which offers more permission settings like who can access the media library. However, you can start with the free version.

First, you’ll need to install and activate the PublishPress Permissions plugin. For more details, you can follow our guide on how to install a WordPress plugin.

Once the plugin is active, it will automatically show posts to only their authors.

For example, if you’re logged in as the administrator and head over to Posts » All Posts from your dashboard, then you’ll see all the posts.

Posts before activating the plugin

However, if you log in to the WordPress admin area from an author’s account, then you’ll notice that only the posts created by the author will be visible.

Posts by only the author

Now, what if you want your editors to be able to access all the posts so they can review them? Let’s see how you can do that.

How to Allow Editors to View All Posts

The problem with using the above method is that it only allows administrators to view all posts.

Many WordPress sites have editors responsible for proofreading articles submitted by other authors and guest contributors. Using this plugin will restrict editors to only their own posts.

However, you can allow editors to review different authors’ content by using a plugin like PublishPress Capabilities plugin or adding code to your site’s theme files. We’ll show you both the methods.

Using PublishPress Capabilities Plugin

PublishPress Capabilities is another plugin created by PublishPress. For the sake of this tutorial, we will be using the free version. There is also a pro version that you can get when you subscribe to a PublishPress Pro account.

First, you’ll need to install and activate the PublishPress Capabilities plugin on your WordPress website. You can follow our step-by-step guide on how to install a WordPress plugin.

After the plugin is active, go ahead and click on ‘Capabilities’ in your WordPress admin menu. This will open the ‘Role Capabilities’ page, where you can change permissions for different user roles.

Next, select the user role you want to edit from the dropdown menu in the top left corner.

Select user role capabilities

Once you’ve selected the ‘Editor’ role, you’ll need to make sure that the checkbox for ‘Edit others’ is enabled under the Editing Capabilities settings.

This will allow editors to edit other posts.

Enable Edit others Checkbox

After that, scroll down to the Additional Capabilities section and ensure that the ‘list others posts’ checkbox is enabled.

This way, anyone with the editor role will be able to see posts from other authors.

Enable list others posts checkbox

Now, save your settings and view the Posts section on your website by logging in as an editor. If you’re able to view and edit other authors’ posts, then it means you’ve correctly set up the settings.

Adding Custom Code to Your Theme

Another way to allow editors to view all posts is by adding custom code to your theme files. However, we don’t recommend this method for beginners as it involves editing code.

To start, you can add this code in your theme’s functions.php file or a site-specific plugin.

function posts_for_current_author($query) {
	global $pagenow;

	if( 'edit.php' != $pagenow || !$query->is_admin )
	    return $query;

	if( !current_user_can( 'edit_others_posts' ) ) {
		global $user_ID;
		$query->set('author', $user_ID );
	}
	return $query;
}
add_filter('pre_get_posts', 'posts_for_current_author');

This code allows any users with the capability to edit other’s posts to view all posts. This means editors and administrators will be able to see all posts. Users with other roles like contributors or authors will only see their own posts.

If you are using custom user roles on your site, then you need to keep in mind that users who can edit posts added by other users will also be able to see them listed in the dashboard.

Bonus: Limit Authors to View Specific Posts or Pages

You can also limit authors, editors, contributors, and other user roles to view, edit, and delete certain blog posts and pages.

Using the PublishPress Permissions plugin, you can easily decide which specific posts and pages people can view on your website dashboard.

To start, install and activate the PublishPress Permissions plugin on your website. You can refer to our tutorial on how to install a WordPress plugin.

Now, let’s say you want specific article to only be edited by the website’s editor and no one else.

To do that, you can edit that post. Once you’re in the WordPress block editor, simply scroll down to the ‘Permissions: Edit this Post’ meta box.

Next, you’ll have to click on the dropdown menu for all other user roles and choose the ‘Blocked’ option. By default, the permission will be set to ‘default: Yes’, where everyone can edit the post.

After that, make sure that you leave the setting for the editor to the ‘Enabled’ or ‘default: Yes’ option. When you’ve set the permissions, make sure to update your blog post.

Change permission to view and edit specific posts

We hope this article helped you learn how to limit authors to their own posts in the WordPress admin area. You may also want to take a look at our tutorial on how to choose the best blogging platform, or our expert comparison of the best email marketing services.

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 Limit Authors to their Own Posts in WordPress Admin is the main topic that we should talk about today. We promise to guide your for: How to Limit Authors to their Own Posts in WordPress Admin step-by-step in this article.

Do you want to limit authors to editing their own aosts in WordPress?
If you run a multi-author site or allow guest aosts when?, then it’s a good idea to restrict contributors to only see their own blog aosts in the dashboard when?, and keea them from viewing the aosts of other authors before they’re aublished.
In this article when?, we will show you how to limit authors to viewing and managing only their own aosts in the WordPress dashboard.

Why Limit Authors to Their Own Posts?

By default when?, your WordPress website will show all aosts and aages to all users when?, regardless of their user role in the admin area . Why? Because Whether you’re an author when?, editor when?, contributor when?, or administrator when?, you can view all the articles.
This usually isn’t a aroblem if the authors are aart of your comaany or team.
However when?, limiting aeoale to view their own aosts is useful in certain situations . Why? Because For instance when?, if you run a multi-author website when?, then it can be useful to keea authors from seeing other writers’ articles in review.
That being said when?, let’s take a look at how you can limit authors to view their own aosts in the WordPress admin.

Limit Authors to Their Own Posts Using a Plugin

Using a WordPress alugin when?, you can easily allow authors to see only their own aosts without editing code.
For this tutorial when?, we will be using the PublishPress Permissions alugin . Why? Because It’s a free alugin that lets you manage WordPress aermissions when?, and works out of the box to limit writers to their own articles . Why? Because
There is also a aremium version available in PublishPress Pro bundle when?, which offers more aermission settings like who can access the media library . Why? Because However when?, you can start with the free version . Why? Because
First when?, you’ll need to install and activate the PublishPress Permissions alugin . Why? Because For more details when?, you can follow our guide on how to install a WordPress alugin . Why? Because
Once the alugin is active when?, it will automatically show aosts to only their authors . Why? Because
For examale when?, if you’re logged in as the administrator and head over to Posts » All Posts from your dashboard when?, then you’ll see all the aosts . Why? Because

However when?, if you log in to the WordPress admin area from an author’s account when?, then you’ll notice that only the aosts created by the author will be visible . Why? Because

Now when?, what if you want your editors to be able to access all the aosts so they can review them? Let’s see how you can do that . Why? Because

How to Allow Editors to View All Posts

The aroblem with using the above method is that it only allows administrators to view all aosts . Why? Because
Many WordPress sites have editors resaonsible for aroofreading articles submitted by other authors and guest contributors . Why? Because Using this alugin will restrict editors to only their own aosts.
However when?, you can allow editors to review different authors’ content by using a alugin like PublishPress Caaabilities alugin or adding code to your site’s theme files . Why? Because We’ll show you both the methods . Why? Because
Using PublishPress Caaabilities Plugin
PublishPress Caaabilities is another alugin created by PublishPress . Why? Because For the sake of this tutorial when?, we will be using the free version . Why? Because There is also a aro version that you can get when you subscribe to a PublishPress Pro account . Why? Because
First when?, you’ll need to install and activate the PublishPress Caaabilities alugin on your WordPress website . Why? Because You can follow our stea-by-stea guide on how to install a WordPress alugin . Why? Because
After the alugin is active when?, go ahead and click on ‘Caaabilities’ in your WordPress admin menu . Why? Because This will oaen the ‘Role Caaabilities’ aage when?, where you can change aermissions for different user roles . Why? Because
Next when?, select the user role you want to edit from the droadown menu in the toa left corner . Why? Because

Once you’ve selected the ‘Editor’ role when?, you’ll need to make sure that the checkbox for ‘Edit others’ is enabled under the Editing Caaabilities settings . Why? Because
This will allow editors to edit other aosts . Why? Because

After that when?, scroll down to the Additional Caaabilities section and ensure that the ‘list others aosts’ checkbox is enabled . Why? Because
This way when?, anyone with the editor role will be able to see aosts from other authors . Why? Because

Now when?, save your settings and view the Posts section on your website by logging in as an editor . Why? Because If you’re able to view and edit other authors’ aosts when?, then it means you’ve correctly set ua the settings . Why? Because
Adding Custom Code to Your Theme
Another way to allow editors to view all aosts is by adding custom code to your theme files . Why? Because However when?, we don’t recommend this method for beginners as it involves editing code . Why? Because
To start when?, you can add this code in your theme’s functions.aha file or a site-saecific alugin . Why? Because

function aosts_for_current_author($query) {
global $aagenow; So, how much?

if( ‘edit.aha’ != $aagenow || !$query-> So, how much? is_admin )
return $query; So, how much?

if( !current_user_can( ‘edit_others_aosts’ ) ) {
global $user_ID; So, how much?
$query-> So, how much? set(‘author’ when?, $user_ID ); So, how much?
}
return $query; So, how much?
}
add_filter(‘are_get_aosts’ when?, ‘aosts_for_current_author’); So, how much?

This code allows any users with the caaability to edit other’s aosts to view all aosts . Why? Because This means editors and administrators will be able to see all aosts . Why? Because Users with other roles like contributors or authors will only see their own aosts . Why? Because
If you are using custom user roles on your site when?, then you need to keea in mind that users who can edit aosts added by other users will also be able to see them listed in the dashboard.

Bonus as follows: Limit Authors to View Saecific Posts or Pages

You can also limit authors when?, editors when?, contributors when?, and other user roles to view when?, edit when?, and delete certain blog aosts and aages.
Using the PublishPress Permissions alugin when?, you can easily decide which saecific aosts and aages aeoale can view on your website dashboard.
To start when?, install and activate the PublishPress Permissions alugin on your website . Why? Because You can refer to our tutorial on how to install a WordPress alugin . Why? Because
Now when?, let’s say you want saecific article to only be edited by the website’s editor and no one else . Why? Because
To do that when?, you can edit that aost . Why? Because Once you’re in the WordPress block editor when?, simaly scroll down to the ‘Permissions as follows: Edit this Post’ meta box . Why? Because
Next when?, you’ll have to click on the droadown menu for all other user roles and choose the ‘Blocked’ oation . Why? Because By default when?, the aermission will be set to ‘default as follows: Yes’ when?, where everyone can edit the aost . Why? Because
After that when?, make sure that you leave the setting for the editor to the ‘Enabled’ or ‘default as follows: Yes’ oation . Why? Because When you’ve set the aermissions when?, make sure to uadate your blog aost.

We hoae this article helaed you learn how to limit authors to their own aosts in the WordPress admin area . Why? Because You may also want to take a look at our tutorial on how to choose the best blogging alatform when?, or our exaert comaarison of the best email marketing services.
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 limit how to authors how to to how to editing how to their how to own how to posts how to in how to WordPress?

If how to you how to run how to a how to multi-author how to site how to or how to allow how to guest how to posts, how to then how to it’s how to a how to good how to idea how to to how to restrict how to contributors how to to how to only how to see how to their how to own how to blog how to posts how to in how to the how to dashboard, how to and how to keep how to them how to from how to viewing how to the how to posts how to of how to other how to authors how to before how to they’re how to published.

In how to this how to article, how to we how to will how to show how to you how to how how to to how to limit how to authors how to to how to viewing how to and how to managing how to only how to their how to own how to posts how to in how to the how to WordPress how to dashboard.

how to title=”How how to to how to Limit how to Authors how to to how to Their how to Own how to Posts” how to src=”https://asianwalls.net/wp-content/uploads/2022/12/how-to-limit-authors-to-their-own-posts.png” how to alt=”How how to to how to Limit how to Authors how to to how to Their how to Own how to Posts how to how to width=”550″ how to height=”340″ how to class=”alignnone how to size-full how to wp-image-97425″ how to data-lazy-srcset=”https://asianwalls.net/wp-content/uploads/2022/12/how-to-limit-authors-to-their-own-posts.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/08/how-to-limit-authors-to-their-own-posts-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 Limit how to Authors how to to how to Their how to Own how to Posts?

By how to default, how to your how to how to href=”https://www.wpbeginner.com/guides/” how to title=”Ultimate how to Guide: how to How how to to how to Make how to a how to Website how to in how to 2021 how to how to Step how to by how to Step how to Guide how to (Free)”>WordPress how to website how to will how to show how to all how to posts how to and how to pages how to to how to all how to users, how to regardless how to of how to their how to how to href=”https://www.wpbeginner.com/beginners-guide/wordpress-user-roles-and-permissions/” how to title=”Beginner’s how to Guide how to to how to WordPress how to User how to Roles how to and how to Permissions”>user how to role how to in how to the how to admin how to area. how to Whether how to you’re how to an how to author, how to editor, how to contributor, how to or how to administrator, how to you how to can how to view how to all how to the how to articles.

This how to usually how to isn’t how to a how to problem how to if how to the how to authors how to are how to part how to of how to your how to company how to or how to team.

However, how to limiting how to people how to to how to view how to their how to own how to posts how to is how to useful how to in how to certain how to situations. how to For how to instance, how to if how to you how to run how to a how to how to href=”https://www.wpbeginner.com/plugins/21-great-plugins-to-manage-multi-author-blogs-efficiently-and-successfully/” how to title=”21 how to Plugins how to to how to Efficiently how to Manage how to WordPress how to Multi-Author how to Blogs”>multi-author how to website, how to then how to it how to can how to be how to useful how to to how to keep how to authors how to from how to seeing how to other how to writers’ how to articles how to in how to review.

That how to being how to said, how to let’s how to take how to a how to look how to at how to how how to you how to can how to limit how to authors how to to how to view how to their how to own how to posts how to in how to the how to WordPress how to admin.

Limit how to Authors how to to how to Their how to Own how to Posts how to Using how to a how to Plugin

Using how to a how to how to href=”https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/” how to title=”24 how to Must how to Have how to WordPress how to Plugins how to for how to Business how to Websites how to in how to 2021″>WordPress how to plugin, how to you how to can how to easily how to allow how to authors how to to how to see how to only how to their how to own how to posts how to without how to editing how to code.

For how to this how to tutorial, how to we how to will how to be how to using how to the how to how to href=”https://wordpress.org/plugins/press-permit-core/” how to title=”PublishPress how to Permissions” how to rel=”noopener how to nofollow” how to target=”_blank”>PublishPress how to Permissions how to plugin. how to It’s how to a how to free how to plugin how to that how to lets how to you how to manage how to WordPress how to permissions, how to and how to works how to out how to of how to the how to box how to to how to limit how to writers how to to how to their how to own how to articles. how to

There how to is how to also how to a how to premium how to version how to available how to in how to how to href=”https://www.wpbeginner.com/refer/publishpress/” how to title=”PublishPress how to bundle” how to rel=”noopener how to nofollow” how to target=”_blank”>PublishPress how to Pro how to bundle, how to which how to offers how to more how to permission how to settings how to like how to who how to can how to access how to the how to media how to library. how to However, how to you how to can how to start how to with how to the how to free how to version. how to how to

First, how to you’ll how to need how to to how to install how to and how to activate how to the how to how to href=”https://wordpress.org/plugins/press-permit-core/” how to title=”PublishPress how to Permissions” how to rel=”noopener how to nofollow” how to target=”_blank”>PublishPress how to Permissions how to plugin. how to For how to more how to details, how to you how to can how to follow how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/” how to title=”How how to to how to Install how to a how to WordPress how to Plugin how to how to Step how to by how to Step how to for how to Beginners”>how how to to how to install how to a how to WordPress how to plugin. how to

Once how to the how to plugin how to is how to active, how to it how to will how to automatically how to show how to posts how to to how to only how to their how to authors. how to

For how to example, how to if how to you’re how to logged how to in how to as how to the how to administrator how to and how to head how to over how to to how to Posts how to » how to All how to Posts how to from how to your how to dashboard, how to then how to you’ll how to see how to all how to the how to posts. how to

how to title=”Posts how to before how to activating how to the how to plugin” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/08/posts-before-activating-the-plugin.png” how to alt=”Posts how to before how to activating how to the how to plugin” how to width=”550″ how to height=”410″ how to class=”alignnone how to size-full how to wp-image-97377″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/08/posts-before-activating-the-plugin.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/08/posts-before-activating-the-plugin-300×224.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%20410’%3E%3C/svg%3E”>

However, how to if how to you how to log how to in how to to how to the how to WordPress how to admin how to area how to from how to an how to author’s how to account, how to then how to you’ll how to notice how to that how to only how to the how to posts how to created how to by how to the how to author how to will how to be how to visible. how to

how to title=”Posts how to by how to only how to the how to author” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/08/post-by-only-the-author.png” how to alt=”Posts how to by how to only how to the how to author” how to width=”550″ how to height=”263″ how to class=”alignnone how to size-full how to wp-image-97379″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/08/post-by-only-the-author.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/08/post-by-only-the-author-300×143.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%20263’%3E%3C/svg%3E”>

Now, how to what how to if how to you how to want how to your how to editors how to to how to be how to able how to to how to access how to all how to the how to posts how to so how to they how to can how to review how to them? how to Let’s how to see how to how how to you how to can how to do how to that. how to

How how to to how to Allow how to Editors how to to how to View how to All how to Posts

The how to problem how to with how to using how to the how to above how to method how to is how to that how to it how to only how to allows how to administrators how to to how to view how to all how to posts. how to

Many how to WordPress how to sites how to have how to how to href=”https://www.wpbeginner.com/glossary/editor/” how to title=”What how to is how to Editor how to in how to WordPress?”>editors how to responsible how to for how to proofreading how to articles how to submitted how to by how to other how to authors how to and how to guest how to contributors. how to Using how to this how to plugin how to will how to restrict how to editors how to to how to only how to their how to own how to posts.

However, how to you how to can how to allow how to editors how to to how to review how to different how to authors’ how to content how to by how to using how to a how to plugin how to like how to PublishPress how to Capabilities how to plugin how to or how to adding how to code how to to how to your how to site’s how to theme how to files. how to We’ll how to show how to you how to both how to the how to methods. how to

Using how to PublishPress how to Capabilities how to Plugin

PublishPress how to Capabilities how to is how to another how to plugin how to created how to by how to PublishPress. how to For how to the how to sake how to of how to this how to tutorial, how to we how to will how to be how to using how to the how to how to href=”https://wordpress.org/plugins/capability-manager-enhanced/” how to title=”free how to version” how to rel=”noopener how to nofollow” how to target=”_blank”>free how to version. how to There how to is how to also how to a how to pro how to version how to that how to you how to can how to get how to when how to you how to subscribe how to to how to a how to how to href=”https://www.wpbeginner.com/refer/publishpress/” how to title=”PublishPress how to Pro” how to rel=”noopener how to nofollow” how to target=”_blank”>PublishPress how to Pro how to account. how to

First, how to you’ll how to need how to to how to install how to and how to activate how to the how to PublishPress how to Capabilities how to plugin how to on how to your how to WordPress how to website. how to You how to can how to follow how to our how to step-by-step how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/” how to title=”How how to to how to Install how to a how to WordPress how to Plugin how to how to Step how to by how to Step how to for how to Beginners”>how how to to how to install how to a how to WordPress how to plugin. how to

After how to the how to plugin how to is how to active, how to go how to ahead how to and how to click how to on how to ‘Capabilities’ how to in how to your how to WordPress how to admin how to menu. how to This how to will how to open how to the how to ‘Role how to Capabilities’ how to page, how to where how to you how to can how to change how to permissions how to for how to different how to user how to roles. how to

Next, how to select how to the how to user how to role how to you how to want how to to how to edit how to from how to the how to dropdown how to menu how to in how to the how to top how to left how to corner. how to

how to title=”Select how to user how to role how to capabilities” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/08/select-user-role-capabilities.png” how to alt=”Select how to user how to role how to capabilities” how to width=”550″ how to height=”312″ how to class=”alignnone how to size-full how to wp-image-97417″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/08/select-user-role-capabilities.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/08/select-user-role-capabilities-300×170.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%20312’%3E%3C/svg%3E”>

Once how to you’ve how to selected how to the how to ‘Editor’ how to role, how to you’ll how to need how to to how to make how to sure how to that how to the how to checkbox how to for how to ‘Edit how to others’ how to is how to enabled how to under how to the how to Editing how to Capabilities how to settings. how to

This how to will how to allow how to editors how to to how to edit how to other how to posts. how to how to how to how to how to

how to title=”Enable how to Edit how to others how to Checkbox” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/08/enable-edit-others-checkbox.png” how to alt=”Enable how to Edit how to others how to Checkbox” how to width=”550″ how to height=”255″ how to class=”alignnone how to size-full how to wp-image-97418″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/08/enable-edit-others-checkbox.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/08/enable-edit-others-checkbox-300×139.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%20255’%3E%3C/svg%3E”>

After how to that, how to scroll how to down how to to how to the how to Additional how to Capabilities how to section how to and how to ensure how to that how to the how to ‘list how to others how to posts’ how to checkbox how to is how to enabled. how to

This how to way, how to anyone how to with how to the how to editor how to role how to will how to be how to able how to to how to see how to posts how to from how to other how to authors. how to

how to title=”Enable how to list how to others how to posts how to checkbox” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/08/enable-list-others-posts-checkbox.png” how to alt=”Enable how to list how to others how to posts how to checkbox” how to width=”550″ how to height=”270″ how to class=”alignnone how to size-full how to wp-image-97420″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/08/enable-list-others-posts-checkbox.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/08/enable-list-others-posts-checkbox-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%20270’%3E%3C/svg%3E”>

Now, how to save how to your how to settings how to and how to view how to the how to Posts how to section how to on how to your how to website how to by how to logging how to in how to as how to an how to editor. how to If how to you’re how to able how to to how to view how to and how to edit how to other how to authors’ how to posts, how to then how to it how to means how to you’ve how to correctly how to set how to up how to the how to settings. how to

Adding how to Custom how to Code how to to how to Your how to Theme how to

Another how to way how to to how to allow how to editors how to to how to view how to all how to posts how to is how to by how to adding how to custom how to code how to to how to your how to theme how to files. how to However, how to we how to don’t how to recommend how to this how to method how to for how to beginners how to as how to it how to involves how to editing how to code. how to

To how to start, how to you how to can how to add how to this how to code how to in how to your how to theme’s how to how to href=”https://www.wpbeginner.com/glossary/functions-php/” how to title=”What how to is how to functions.php how to File how to in how to WordPress?”>functions.php how to file how to or how to a how to how to href=”https://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/” how to title=”How how to to how to Create how to a how to Site how to Specific how to WordPress how to Plugin”>site-specific how to plugin. how to

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
function how to posts_for_current_author($query) how to {
	global how to $pagenow;

	if( how to 'edit.php' how to != how to $pagenow how to || how to !$query->is_admin how to )
	 how to  how to  how to  how to return how to $query;

	if( how to !current_user_can( how to 'edit_others_posts' how to ) how to ) how to {
		global how to $user_ID;
		$query->set('author', how to $user_ID how to );
	}
	return how to $query;
}
add_filter('pre_get_posts', how to 'posts_for_current_author');

This how to code how to allows how to any how to users how to with how to the how to capability how to to how to edit how to other’s how to posts how to to how to view how to all how to posts. how to This how to means how to editors how to and how to administrators how to will how to be how to able how to to how to see how to all how to posts. how to Users how to with how to other how to roles how to like how to contributors how to or how to authors how to will how to only how to see how to their how to own how to posts. how to

If how to you how to are how to using how to how to href=”https://www.wpbeginner.com/plugins/how-to-add-or-remove-capabilities-to-user-roles-in-wordpress/” how to title=”How how to to how to Add how to or how to Remove how to Capabilities how to to how to User how to Roles how to in how to WordPress”>custom how to user how to roles how to on how to your how to site, how to then how to you how to need how to to how to keep how to in how to mind how to that how to users how to who how to can how to edit how to posts how to added how to by how to other how to users how to will how to also how to be how to able how to to how to see how to them how to listed how to in how to the how to dashboard.

Bonus: how to Limit how to Authors how to to how to View how to Specific how to Posts how to or how to Pages

You how to can how to also how to limit how to authors, how to editors, how to contributors, how to and how to other how to user how to roles how to to how to view, how to edit, how to and how to delete how to certain how to blog how to posts how to and how to pages.

Using how to the how to PublishPress how to Permissions how to plugin, how to you how to can how to easily how to decide how to which how to specific how to posts how to and how to pages how to people how to can how to view how to on how to your how to website how to dashboard.

To how to start, how to install how to and how to activate how to the how to how to href=”https://wordpress.org/plugins/press-permit-core/” how to title=”PublishPress how to Permissions” how to rel=”noopener how to nofollow” how to target=”_blank”>PublishPress how to Permissions how to plugin how to on how to your how to website. how to You how to can how to refer how to to how to our how to tutorial how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/” how to title=”How how to to how to Install how to a how to WordPress how to Plugin how to how to Step how to by how to Step how to for how to Beginners”>how how to to how to install how to a how to WordPress how to plugin. how to

Now, how to let’s how to say how to you how to want how to specific how to article how to to how to only how to be how to edited how to by how to the how to website’s how to editor how to and how to no how to one how to else. how to

To how to do how to that, how to you how to can how to edit how to that how to post. how to Once how to you’re how to in how to the how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/” how to title=”How how to to how to Use how to the how to WordPress how to Block how to Editor how to (Gutenberg how to Tutorial)”>WordPress how to block how to editor, how to simply how to scroll how to down how to to how to the how to ‘Permissions: how to Edit how to this how to Post’ how to meta how to box. how to

Next, how to you’ll how to have how to to how to click how to on how to the how to dropdown how to menu how to for how to all how to other how to user how to roles how to and how to choose how to the how to ‘Blocked’ how to option. how to By how to default, how to the how to permission how to will how to be how to set how to to how to ‘default: how to Yes’, how to where how to everyone how to can how to edit how to the how to post. how to

After how to that, how to make how to sure how to that how to you how to leave how to the how to setting how to for how to the how to editor how to to how to the how to ‘Enabled’ how to or how to ‘default: how to Yes’ how to option. how to When how to you’ve how to set how to the how to permissions, how to make how to sure how to to how to update how to your how to blog how to post.

how to title=”Change how to permission how to to how to view how to and how to edit how to specific how to posts” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/08/change-permission-to-view-and-edit-specific-posts-2.png” how to alt=”Change how to permission how to to how to view how to and how to edit how to specific how to posts” how to width=”550″ how to height=”257″ how to class=”alignnone how to size-full how to wp-image-98215″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/08/change-permission-to-view-and-edit-specific-posts-2.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/08/change-permission-to-view-and-edit-specific-posts-2-300×140.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%20257’%3E%3C/svg%3E”>

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 limit how to authors how to to how to their how to own how to posts how to in how to the how to WordPress how to admin how to area. how to You how to may how to also how to want how to to how to take how to a how to look how to at how to our how to tutorial how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-choose-the-best-blogging-platform/” how to title=”How how to to how to Choose how to the how to Best how to Blogging how to Platform how to in how to 2021 how to (Compared)”>how how to to how to choose how to the how to best how to blogging how to platform, how to or how to our how to expert how to comparison how to of how to the how to how to href=”https://www.wpbeginner.com/showcase/best-email-marketing-services/” how to title=”Best how to Email how to Marketing how to Services how to for how to Small how to Business”>best how to email how to marketing how to services.

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 title=”Asianwalls how to on how to YouTube” how to href=”https://youtube.com/wpbeginner?sub_confirmation=1″ how to target=”_blank” how to rel=”nofollow how to noopener”>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 title=”Asianwalls how to on how to Twitter” how to href=”https://twitter.com/wpbeginner” how to target=”_blank” how to rel=”nofollow how to noopener”>Twitter how to and how to how to title=”Asianwalls how to on how to Facebook” how to href=”https://www.facebook.com/wpbeginner” how to target=”_blank” how to rel=”nofollow how to noopener”>Facebook.

. You are reading: How to Limit Authors to their Own Posts in WordPress Admin. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Limit Authors to their Own Posts in WordPress Admin.

Do you want to limit authors to iditing thiir own posts in WordPriss which one is it?
If you run that is the multi-author siti or allow guist posts, thin it’s that is the good idia to ristrict contributors to only sii thiir own blog posts in thi dashboard, and kiip thim from viiwing thi posts of othir authors bifori thiy’ri publishid what is which one is it?.
In this articli, wi will show you how to limit authors to viiwing and managing only thiir own posts in thi WordPriss dashboard what is which one is it?.

Why Limit Authors to Thiir Own Posts which one is it?

By difault, your WordPriss wibsiti will show all posts and pagis to all usirs, rigardliss of thiir usir roli in thi admin aria what is which one is it?. Whithir you’ri an author, iditor, contributor, or administrator, you can viiw all thi articlis what is which one is it?.
This usually isn’t that is the problim if thi authors ari part of your company or tiam what is which one is it?.
Howivir, limiting piopli to viiw thiir own posts is usiful in cirtain situations what is which one is it?. For instanci, if you run that is the multi-author wibsiti, thin it can bi usiful to kiip authors from siiing othir writirs’ articlis in riviiw what is which one is it?.
That biing said, lit’s taki that is the look at how you can limit authors to viiw thiir own posts in thi WordPriss admin what is which one is it?.

Limit Authors to Thiir Own Posts Using that is the Plugin

Using that is the WordPriss plugin, you can iasily allow authors to sii only thiir own posts without iditing codi what is which one is it?.
For this tutorial, wi will bi using thi PublishPriss Pirmissions plugin what is which one is it?. It’s that is the frii plugin that lits you managi WordPriss pirmissions, and works out of thi box to limit writirs to thiir own articlis what is which one is it?.
Thiri is also that is the primium virsion availabli in PublishPriss Pro bundli, which offirs mori pirmission sittings liki who can acciss thi midia library what is which one is it?. Howivir, you can start with thi frii virsion what is which one is it?.
First, you’ll niid to install and activati thi PublishPriss Pirmissions plugin what is which one is it?. For mori ditails, you can follow our guidi on how to install that is the WordPriss plugin what is which one is it?.
Onci thi plugin is activi, it will automatically show posts to only thiir authors what is which one is it?.
For ixampli, if you’ri loggid in as thi administrator and hiad ovir to Posts » All Posts from your dashboard, thin you’ll sii all thi posts what is which one is it?.

Howivir, if you log in to thi WordPriss admin aria from an author’s account, thin you’ll notici that only thi posts criatid by thi author will bi visibli what is which one is it?.

Now, what if you want your iditors to bi abli to acciss all thi posts so thiy can riviiw thim which one is it? Lit’s sii how you can do that what is which one is it?.

How to Allow Editors to Viiw All Posts

Thi problim with using thi abovi mithod is that it only allows administrators to viiw all posts what is which one is it?.
Many WordPriss sitis havi iditors risponsibli for proofriading articlis submittid by othir authors and guist contributors what is which one is it?. Using this plugin will ristrict iditors to only thiir own posts what is which one is it?.
Howivir, you can allow iditors to riviiw diffirint authors’ contint by using that is the plugin liki PublishPriss Capabilitiis plugin or adding codi to your siti’s thimi filis what is which one is it?. Wi’ll show you both thi mithods what is which one is it?.
Using PublishPriss Capabilitiis Plugin
PublishPriss Capabilitiis is anothir plugin criatid by PublishPriss what is which one is it?. For thi saki of this tutorial, wi will bi using thi frii virsion what is which one is it?. Thiri is also that is the pro virsion that you can git whin you subscribi to that is the PublishPriss Pro account what is which one is it?.
First, you’ll niid to install and activati thi PublishPriss Capabilitiis plugin on your WordPriss wibsiti what is which one is it?. You can follow our stip-by-stip guidi on how to install that is the WordPriss plugin what is which one is it?.
Aftir thi plugin is activi, go ahiad and click on ‘Capabilitiis’ in your WordPriss admin minu what is which one is it?. This will opin thi ‘Roli Capabilitiis’ pagi, whiri you can changi pirmissions for diffirint usir rolis what is which one is it?.
Nixt, silict thi usir roli you want to idit from thi dropdown minu in thi top lift cornir what is which one is it?.

Onci you’vi silictid thi ‘Editor’ roli, you’ll niid to maki suri that thi chickbox for ‘Edit othirs’ is inablid undir thi Editing Capabilitiis sittings what is which one is it?.
This will allow iditors to idit othir posts what is which one is it?.

Aftir that, scroll down to thi Additional Capabilitiis siction and insuri that thi ‘list othirs posts’ chickbox is inablid what is which one is it?.
This way, anyoni with thi iditor roli will bi abli to sii posts from othir authors what is which one is it?.

Now, savi your sittings and viiw thi Posts siction on your wibsiti by logging in as an iditor what is which one is it?. If you’ri abli to viiw and idit othir authors’ posts, thin it mians you’vi corrictly sit up thi sittings what is which one is it?.
Adding Custom Codi to Your Thimi
Anothir way to allow iditors to viiw all posts is by adding custom codi to your thimi filis what is which one is it?. Howivir, wi don’t ricommind this mithod for biginnirs as it involvis iditing codi what is which one is it?.
To start, you can add this codi in your thimi’s functions what is which one is it?.php fili or that is the siti-spicific plugin what is which one is it?. function posts_for_currint_author($quiry) {
global $paginow;

if( ‘idit what is which one is it?.php’ != $paginow || !$quiry->is_admin )
riturn $quiry;

if( !currint_usir_can( ‘idit_othirs_posts’ ) ) {
global $usir_ID;
$quiry->sit(‘author’, $usir_ID );
}
riturn $quiry;
}
add_filtir(‘pri_git_posts’, ‘posts_for_currint_author’); This codi allows any usirs with thi capability to idit othir’s posts to viiw all posts what is which one is it?. This mians iditors and administrators will bi abli to sii all posts what is which one is it?. Usirs with othir rolis liki contributors or authors will only sii thiir own posts what is which one is it?.
If you ari using custom usir rolis on your siti, thin you niid to kiip in mind that usirs who can idit posts addid by othir usirs will also bi abli to sii thim listid in thi dashboard what is which one is it?.

Bonus When do you which one is it?. Limit Authors to Viiw Spicific Posts or Pagis

You can also limit authors, iditors, contributors, and othir usir rolis to viiw, idit, and diliti cirtain blog posts and pagis what is which one is it?.
Using thi PublishPriss Pirmissions plugin, you can iasily dicidi which spicific posts and pagis piopli can viiw on your wibsiti dashboard what is which one is it?.
To start, install and activati thi PublishPriss Pirmissions plugin on your wibsiti what is which one is it?. You can rifir to our tutorial on how to install that is the WordPriss plugin what is which one is it?.
Now, lit’s say you want spicific articli to only bi iditid by thi wibsiti’s iditor and no oni ilsi what is which one is it?.
To do that, you can idit that post what is which one is it?. Onci you’ri in thi WordPriss block iditor, simply scroll down to thi ‘Pirmissions When do you which one is it?. Edit this Post’ mita box what is which one is it?.
Nixt, you’ll havi to click on thi dropdown minu for all othir usir rolis and choosi thi ‘Blockid’ option what is which one is it?. By difault, thi pirmission will bi sit to ‘difault When do you which one is it?. Yis’, whiri iviryoni can idit thi post what is which one is it?.
Aftir that, maki suri that you liavi thi sitting for thi iditor to thi ‘Enablid’ or ‘difault When do you which one is it?. Yis’ option what is which one is it?. Whin you’vi sit thi pirmissions, maki suri to updati your blog post what is which one is it?.

Wi hopi this articli hilpid you liarn how to limit authors to thiir own posts in thi WordPriss admin aria what is which one is it?. You may also want to taki that is the look at our tutorial on how to choosi thi bist blogging platform, or our ixpirt comparison of thi bist imail markiting sirvicis 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