• Resolved whatachamp

    (@whatachamp)


    Hi all,
    Been googling this one but can’t find a relvant answer: is there a way to allow Editor access to the Yoast SEO settings?

    Somethinglike this in the functions.php would be super:

    // get the the role object
    $role_object = get_role( 'editor' );
    // add $cap capability to this role object
    $role_object->add_cap( 'edit_theme_options' );

    Thanks for any insight.

    https://wordpress.org/plugins/wordpress-seo/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Place this code in function.php

    // change the #7 to the user id
    $user = new WP_User( 7 );
    $user->add_cap( ‘manage_options’);

    There is no other way to give access to Yoast without give access to everything else? Because you know manage_options gives the user admin access.

    Not quite admin access, but still, too much to give to an external SEO person.

    Yoast please enable access level permissions!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Yoast SEO Settings for Editor’ is closed to new replies.