Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

content rating row

// Add Shortcode
function content_rating_box( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'heading' => 'Sex',
			'value' => '3',
		),
		$atts,
		'content-rating-box'
	);

}
add_shortcode( 'content-rating-box', 'content_rating_box' );