Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Plugin: Using the strike tag

This works ok:

<?php
function allow_strike_as_allowed_tags( $tags ) {
$tags['strike'] = array();
return $tags;
}
add_filter( 'bb_allowed_tags', 'allow_strike_as_allowed_tags' );

function allow_italic_as_allowed_tags( $tags ) {
$tags['i'] = array();
return $tags;
}
add_filter( 'bb_allowed_tags', 'allow_italic_as_allowed_tags' );
?>

Skip to toolbar