Allow specific user to edit a specific page

The issue is that an empty return value from map_meta_cap will grant all users permission to do that thing, because that’s essentially the same thing as saying “no capabilities are required to do this”. What you really want to do is just add edit_special_page to the existing list of required capabilities: add_filter( ‘map_meta_cap’, function( $caps, … Read more