Views: 125
function change_b_to_strong($content){
$content = str_replace('b>', 'strong>', $content);
return $content;
}
add_filter( 'the_content', 'change_b_to_strong' );
add_filter( 'the_editor', 'change_b_to_strong' );
"Learn Grow Share – Code is Poetry"
Views: 125
function change_b_to_strong($content){
$content = str_replace('b>', 'strong>', $content);
return $content;
}
add_filter( 'the_content', 'change_b_to_strong' );
add_filter( 'the_editor', 'change_b_to_strong' );