Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

bold

shortcode test

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

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

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