Changeset 716808
- Timestamp:
- 05/22/2013 06:53:38 PM (13 years ago)
- Location:
- bleep-filter/trunk
- Files:
-
- 2 edited
-
bleep_filter.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bleep-filter/trunk/bleep_filter.php
r716416 r716808 4 4 Plugin URI: http://www.filterplugin.com 5 5 Description: A better word filter that removes unwanted words from your wordpress site by easily capturing common misspellings and deliberate obfuscation 6 Version: 0. 26 Version: 0.3 7 7 Author: Nathan Lampe 8 8 Author URI: http://www.nathanlampe.com … … 53 53 if($bleep_filter_content == 'on'){ 54 54 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 ); 55 57 } 56 58 if($bleep_filter_content_rss == 'on'){ 57 59 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 ); 58 62 } 59 63 60 64 if($bleep_filter_comment == 'on'){ 61 65 add_filter( 'comment_text' , array( $this, 'word_filter' ), 50); 66 add_filter( 'comment_excerpt' , array( $this, 'word_filter' ), 50); 62 67 } 63 68 64 69 if($bleep_filter_comment_rss == 'on'){ 65 70 add_filter( 'comment_text_rss' , array( $this, 'word_filter' ), 50 ); 71 add_filter( 'comment_excerpt_rss' , array( $this, 'word_filter' ), 50); 66 72 } 67 73 -
bleep-filter/trunk/readme.txt
r716416 r716808 5 5 Requires at least: 3.5.1 6 6 Tested up to: 3.5.1 7 Stable tag: 0. 27 Stable tag: 0.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 25 25 26 26 == Frequently asked questions == 27 = Will my posts and comments be edited permanently? = 28 No. Bleep Filter works passively ensuring that your original content, posts, and comments remain the same even if you delete or deactivate the plugin. 27 29 28 30 = How do I prevent certain words from being filtered? = … … 38 40 39 41 == Changelog == 40 version 0.2 initial release41 42 43 = 0.3 = 44 *now includes titles and excerpts 45 46 = 0.2 = 47 *initial release 42 48 43 49 == Upgrade notice == 44 none45 50 46 47 == Arbitrary section 1 == 48 none 51 = 0.3 = 52 This version now includes titles and excerpts
Note: See TracChangeset
for help on using the changeset viewer.