Viewing 1 replies (of 1 total)
  • Plugin Author Creame

    (@creapuntome)

    Hi!
    You can add capability ‘manage_options’ to role editor. With this, editors can access to all settings menu, not only WAme.

    You can do it with a plugin like User role editor or with a bit of code in your functions.php:

    add_action( 'init', function () {
      $role = get_role( 'editor' );
      $role->add_cap( 'manage_options' ); // capability
    } );

    Note: Only need to run once, you can delete de code after the editor has access.

Viewing 1 replies (of 1 total)

The topic ‘Editor access’ is closed to new replies.