Forums
-
- Forum
- Posts
-
- Installation
- 28,502
- Troubleshooting
- 62,672
- Themes
- 10,431
- Plugins
- 15,360
- Requests & Feedback
- 14,972
- Showcase
- 3,256
-
Here is the section of akismet.php that I saw that led me to believe I could assign a level to a user to make them ‘trusted’:
In akismet.php, around line 119:
function bb_ksd_check_post( $post_text ) {
global $bb_current_user, $bb_ksd_pre_post_status;
if ( in_array($bb_current_user->roles[0], bb_trusted_roles()) ) // Don't filter content from users with a trusted role
return $post_text;