Title: File Attachment
Last modified: April 4, 2018

---

# File Attachment

 *  Resolved [viktord](https://wordpress.org/support/users/viktord/)
 * (@viktord)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/file-attachment-11/)
 * Hi Shamim, Can you please give me code to turn off file attachment section only
   for subscriber role and leave it on for other roles.
 * Thank you very much.

Viewing 1 replies (of 1 total)

 *  Plugin Author [Shamim Hasan](https://wordpress.org/support/users/shamim51/)
 * (@shamim51)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/file-attachment-11/#post-10148883)
 * Please add following code in your theme’s ( child theme’s if any) functions.php
 *     ```
       add_filter( 'fep_get_option', function( $value, $option ){
           if( 'allow_attachment' == $option && in_array( 'subscriber', wp_get_current_user()->roles ) )
           $value = 0;
           return $value;
       }, 10, 2);
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘File Attachment’ is closed to new replies.

 * ![](https://ps.w.org/front-end-pm/assets/icon-256x256.gif?rev=2309447)
 * [Front End PM](https://wordpress.org/plugins/front-end-pm/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/front-end-pm/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/front-end-pm/)
 * [Active Topics](https://wordpress.org/support/plugin/front-end-pm/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/front-end-pm/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/front-end-pm/reviews/)

## Tags

 * [File Attachment](https://wordpress.org/support/topic-tag/file-attachment/)

 * 1 reply
 * 2 participants
 * Last reply from: [Shamim Hasan](https://wordpress.org/support/users/shamim51/)
 * Last activity: [8 years, 1 month ago](https://wordpress.org/support/topic/file-attachment-11/#post-10148883)
 * Status: resolved