• Is there a plugin that will censor BAD LANGUAGE in my posts, like if any word like “p*sssy” is used in the post, it will be displaid something like “!@#!$#”

    I really need this to censor the bad words because of the Google AdSense policy.

Viewing 1 replies (of 1 total)
  • Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Huh. Post filter for the posts? That’s a new one for me.

    Try one of these plugins, it may work for you.

    http://wordpress.org/extend/plugins/search.php?q=swear+words+post

    If you find one that works with comments via a filter then it should be able to be applied to the posts as well.

    For example if a plugin added bad_word_censor() that could be applied to the posts, comments, and RSS feeds like so.

    add_filter( 'the_content' , 'bad_word_censor' , 50 );
    add_filter( 'the_content_rss' , 'bad_word_censor' , 50 );
    add_filter( 'comment_text' , 'bad_word_censor' , 50 );
    add_filter( 'comment_text_rss' , 'bad_word_censor' , 50 );
Viewing 1 replies (of 1 total)
  • The topic ‘WordPress censor plugin’ is closed to new replies.