/** * Ensure WordPress Administrators always have SEO capabilities * This prevents admin from losing access to SEO Reports menu */ add_action( 'init', function () { $admin = get_role( 'administrator' ); if ( $admin ) { $admin->add_cap( 'manage_seo_clients' ); $admin->add_cap( 'view_seo_reports' ); $admin->add_cap( 'edit_seo_reports' ); $admin->add_cap( 'generate_seo_reports' ); } });