Plugin Directory

Changeset 716808


Ignore:
Timestamp:
05/22/2013 06:53:38 PM (13 years ago)
Author:
nathanlampe
Message:

0.3 updated to include titles and excerpts

Location:
bleep-filter/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • bleep-filter/trunk/bleep_filter.php

    r716416 r716808  
    44Plugin URI: http://www.filterplugin.com
    55Description: A better word filter that removes unwanted words from your wordpress site by easily capturing common misspellings and deliberate obfuscation
    6 Version: 0.2
     6Version: 0.3
    77Author: Nathan Lampe
    88Author URI: http://www.nathanlampe.com
     
    5353            if($bleep_filter_content == 'on'){
    5454                add_filter( 'the_content' , array( $this, 'word_filter' ) , 50 );
     55                add_filter( 'the_excerpt' , array( $this, 'word_filter' ), 50 );
     56                add_filter( 'the_title' , array( $this, 'word_filter' ), 50 );
    5557            }
    5658            if($bleep_filter_content_rss == 'on'){
    5759                add_filter( 'the_content_rss' , array( $this, 'word_filter' ) , 50 );
     60                add_filter( 'the_excerpt_rss' , array( $this, 'word_filter' ) , 50 );
     61                add_filter( 'the_title_rss' , array( $this, 'word_filter' ) , 50 );
    5862            }
    5963           
    6064            if($bleep_filter_comment == 'on'){
    6165                add_filter( 'comment_text' , array( $this, 'word_filter' ), 50);
     66                add_filter( 'comment_excerpt' , array( $this, 'word_filter' ), 50);
    6267            }
    6368           
    6469            if($bleep_filter_comment_rss == 'on'){
    6570                add_filter( 'comment_text_rss' , array( $this, 'word_filter' ), 50 );
     71                add_filter( 'comment_excerpt_rss' , array( $this, 'word_filter' ), 50);
    6672            }
    6773
  • bleep-filter/trunk/readme.txt

    r716416 r716808  
    55Requires at least: 3.5.1
    66Tested up to: 3.5.1
    7 Stable tag: 0.2
     7Stable tag: 0.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2525
    2626== Frequently asked questions ==
     27= Will my posts and comments be edited permanently? =
     28No. Bleep Filter works passively ensuring that your original content, posts, and comments remain the same even if you delete or deactivate the plugin.
    2729
    2830= How do I prevent certain words from being filtered? =
     
    3840
    3941== Changelog ==
    40 version 0.2 initial release
    4142
     43= 0.3 =
     44*now includes titles and excerpts
     45
     46= 0.2 =
     47*initial release
    4248
    4349== Upgrade notice ==
    44 none
    4550
    46 
    47 == Arbitrary section 1 ==
    48 none
     51= 0.3 =
     52This version now includes titles and excerpts
Note: See TracChangeset for help on using the changeset viewer.