Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Bold

// Add Shortcode
function blod_text_shortcode( $atts , $content = null ) {

	// Code
return '<strong>' . $content . '</strong>';

}
add_shortcode( 'b', 'blod_text_shortcode' );