Change Bold tag to Strong tag in WordPress

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' );

Author:

Leave a Reply