Yoast - markhowellsmead/helpers GitHub Wiki

Add custom role and capability for SEO plugin

// The role named here must be created in WP Admin, e.g. using the Members plugin.
add_action('admin_init', function () {
	$role = get_role('administrator');
	$role->add_cap('manage_wpseo_options');
});
add_filter('wpseo_manage_options_capability', function () {
	return 'wpseo_manage_options';
});