Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Plugin: Using the strike tag

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

Skip to toolbar