Title: Exclude certain roles?
Last modified: August 30, 2016

---

# Exclude certain roles?

 *  Resolved [kristina87](https://wordpress.org/support/users/kristina87/)
 * (@kristina87)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/exclude-certain-roles/)
 * Hello!
 * Thank you for the plugin again
 * Is there anything I can add to the code in order to exclude certain roles?
 * Thank you
    Kristina
 * [https://wordpress.org/plugins/comment-roles/](https://wordpress.org/plugins/comment-roles/)

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

 *  Plugin Author [Kendall Weaver](https://wordpress.org/support/users/kendalltristan/)
 * (@kendalltristan)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/exclude-certain-roles/#post-6583541)
 * Kristina,
 * When iterating through the roles, you could arbitrarily test for certain roles
   and then `continue` the function:
 *     ```
       // Iterate through each role and add it as an option in the form.
           foreach($roles as $key => $value) {
               if ($value['name'] == 'Administrator') {
                   continue;
               }
   
               echo '<input type="checkbox" class="comment-roles-checkbox" name="comment-role[]" value="' . $key . '" /> ' . $value['name'] . '<br />';
           }
       ```
   
 * I’ll go ahead and add this to the (admittedly small) roadmap for the plugin. 
   Hopefully I can push an update here in a week or two with an options page that
   includes this.
 *  Thread Starter [kristina87](https://wordpress.org/support/users/kristina87/)
 * (@kristina87)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/exclude-certain-roles/#post-6583554)
 * Thank you!!

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

The topic ‘Exclude certain roles?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/comment-roles.svg)
 * [Comment Roles](https://wordpress.org/plugins/comment-roles/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/comment-roles/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/comment-roles/)
 * [Active Topics](https://wordpress.org/support/plugin/comment-roles/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/comment-roles/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/comment-roles/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [kristina87](https://wordpress.org/support/users/kristina87/)
 * Last activity: [10 years, 7 months ago](https://wordpress.org/support/topic/exclude-certain-roles/#post-6583554)
 * Status: resolved