Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Esporte

Imagem somente categoria esporte

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

	// Attributes
	$atts = shortcode_atts(
		array(
		),
		$atts,
		'esporte'
	);

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

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