Rating: 5 stars
It is incredible that this still functions (for now). It won’t be long before this plugin becomes unusable though. If someone wants to take it over and recommend something modern (why WP doesn’t make this a native feature….idk). At least, for the moment, it works still ??
]]>Rating: 5 stars
Excellent plugin, it worked perfectly in the most current version of WordPress even though it was so long without updating !!
]]>Rating: 5 stars
If you want this to apply to custom post types, simply modify the following line in the plugin:
function mypo_parse_query_useronly( $wp_query ) {
if ( strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false ) {
To include the endpoint of the edit page for the custom post type, like so:
function mypo_parse_query_useronly( $wp_query ) {
if (
strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false
||
strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php?post_type=[POST TYPE SLUG]' ) !== false
) {
You can add as many custom post types separated by OR operators “||” as you’d like.
]]>Rating: 5 stars
The plugin will allow a contributor to manage or view only the posts or drafts that they have written without letting them see what other contributors or authors have published. Simply install the plugin and it will take care of the rest.
]]>