Title: Allow non-admin access?
Last modified: August 24, 2016

---

# Allow non-admin access?

 *  Resolved [idobi](https://wordpress.org/support/users/idobi/)
 * (@idobi)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/allow-non-admin-access/)
 * How do I allow non-admin to create links when they post?
 * [https://wordpress.org/plugins/yourls-link-creator/](https://wordpress.org/plugins/yourls-link-creator/)

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

 *  Plugin Author [Andrew Norcross](https://wordpress.org/support/users/norcross/)
 * (@norcross)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/allow-non-admin-access/#post-6020199)
 * which access level are you wanting to apply?
 *  Thread Starter [idobi](https://wordpress.org/support/users/idobi/)
 * (@idobi)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/allow-non-admin-access/#post-6020200)
 * Contributors
 *  Plugin Author [Andrew Norcross](https://wordpress.org/support/users/norcross/)
 * (@norcross)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/allow-non-admin-access/#post-6020201)
 * I’ll need to add a filter to accommodate this. I’ve got a version coming out 
   in the next day or two, I’ll add it in there.
 *  Plugin Author [Andrew Norcross](https://wordpress.org/support/users/norcross/)
 * (@norcross)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/allow-non-admin-access/#post-6020202)
 * Just pushed the update, so you can now filter the capability level. Here’s the
   filter you will need to add to your theme / functionality plugin (not the YOURLS
   plugin itself, of course):
 *     ```
       function rkv_yourls_allow_contribs( $action, $cap ) {
       	return 'edit_posts';
       }
   
       add_filter( 'yourls_user_cap', 'rkv_yourls_allow_contribs', 10, 2 );
       ```
   

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

The topic ‘Allow non-admin access?’ is closed to new replies.

 * ![](https://ps.w.org/yourls-link-creator/assets/icon-256x256.png?rev=1081567)
 * [YOURLS Link Creator](https://wordpress.org/plugins/yourls-link-creator/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/yourls-link-creator/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/yourls-link-creator/)
 * [Active Topics](https://wordpress.org/support/plugin/yourls-link-creator/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/yourls-link-creator/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/yourls-link-creator/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [Andrew Norcross](https://wordpress.org/support/users/norcross/)
 * Last activity: [10 years, 9 months ago](https://wordpress.org/support/topic/allow-non-admin-access/#post-6020202)
 * Status: resolved