Forums
-
- Forum
- Posts
-
- Installation
- 28,521
- Troubleshooting
- 62,696
- Themes
- 10,443
- Plugins
- 15,379
- Requests & Feedback
- 14,981
- Showcase
- 3,257
-
Here is a little plugin for allowing strike!
<?php
function allow_strike_as_allowed_tags( $tags ) {
$tags['del'] = array();
return $tags;
}
add_filter( 'bb_allowed_tags', 'allow_strike_as_allowed_tags' );
?>
Just save it as allow-strike.php and toss it in your /my-plugins/ folder.
Trent