• Does anyone know if there are any plugins for censoring the post and comment posts? I’ll i’m looking to do is find something that will censor fuc* to f***. Anything out there?

Viewing 1 replies (of 1 total)
  • https://elliottback.com/wp/archives/2004/12/01/polite-ifier-wp-plugin/

    Intended for comments, but easily modded for post content as well…in the plugin’s file (polite-ifier.php) look for the add_filter() lines at the bottom:

    add_filter('comment_author', 'politeify', 19);

    Just add these after the existing ones:

    add_filter('the_content', 'politeify', 19);
    add_filter('the_excerpt', 'politeify', 19);
    add_filter('the_content_rss', 'politeify', 19);
    add_filter('the_excerpt_rss', 'politeify', 19);

Viewing 1 replies (of 1 total)
  • The topic ‘Post and Comment Censor’ is closed to new replies.