Title: Editor Access
Last modified: October 18, 2016

---

# Editor Access

 *  Resolved [John Huebner](https://wordpress.org/support/users/hube2/)
 * (@hube2)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/editor-access-10/)
 * Is there a filter or something that I can add to allow editors access to update
   redirects?

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

 *  [Luke Cavanagh](https://wordpress.org/support/users/lukecavanagh/)
 * (@lukecavanagh)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/editor-access-10/#post-8325506)
 * [@hube2](https://wordpress.org/support/users/hube2/)
 * I did a quick check using User Role Editor and then checked to see if there was
   an option for the custom post type which Safe Redirect Manager creates for edit
   permission on that post type. But that option did not show up.
 * I am sure it is possible, so you could enable that permission on the editor user
   role to add that.
 *  Thread Starter [John Huebner](https://wordpress.org/support/users/hube2/)
 * (@hube2)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/editor-access-10/#post-8328566)
 * I did a little more digging this morning, it was a long day yesterday and I was
   feeling lazy.
 * There is a hook
 *     ```
       add_filter('srm_restrict_to_capability', 'my_srm_restrict_to_capability');
       function my_srm_restrict_to_capability($cap) {
         $cap = 'edit_published_posts';
         return $cap;
       }
       ```
   
 *  [Luke Cavanagh](https://wordpress.org/support/users/lukecavanagh/)
 * (@lukecavanagh)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/editor-access-10/#post-8330136)
 * [@hube2](https://wordpress.org/support/users/hube2/)
 * Thanks for sharing that.

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

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

 * ![](https://ps.w.org/safe-redirect-manager/assets/icon.svg?rev=2791413)
 * [Safe Redirect Manager](https://wordpress.org/plugins/safe-redirect-manager/)
 * [Support Threads](https://wordpress.org/support/plugin/safe-redirect-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/safe-redirect-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/safe-redirect-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/safe-redirect-manager/reviews/)

## Tags

 * [edit](https://wordpress.org/support/topic-tag/edit/)
 * [editor](https://wordpress.org/support/topic-tag/editor/)
 * [post-type](https://wordpress.org/support/topic-tag/post-type/)
 * [role](https://wordpress.org/support/topic-tag/role/)
 * [user](https://wordpress.org/support/topic-tag/user/)

 * 3 replies
 * 2 participants
 * Last reply from: [Luke Cavanagh](https://wordpress.org/support/users/lukecavanagh/)
 * Last activity: [9 years, 7 months ago](https://wordpress.org/support/topic/editor-access-10/#post-8330136)
 * Status: resolved