Show only those pages that are created by the specific logged in user in WordPress
Add the following to an mu-plugin (custom user role is so76666381) (tested): // Adjust admin queries to only show pages by current user if has custom role. add_action( ‘pre_get_posts’, static function ( $query ) { // Limit hiding pages only to admin queries. if ( ! is_admin() ) { return; } // Get post types … Read more