Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Can you make it so a user’s posts are not filtered by Akismet?


chrishajer
Participant

@chrishajer

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;

Skip to toolbar