/** * Redirect plugin – tweak role rights * Give the SEO manager role the permission to use the redirect plugin. Only see and add */ add_filter( ‘redirection_role’, function( $role ) { return ‘edit_posts’; // Add your chosen capability or role here } ); add_filter( ‘redirection_capability_check’, function( $capability, $permission_name ) { if ( $permission_name === […]