Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

content box demo

// Add Shortcode
function content_box_demo( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'sex' => '0',
			'nudity' => '0',
			'violence' => '0',
		),
		$atts,
		'content-box-demo'
	);

	return $output;

}
add_shortcode( 'content-box-demo', 'content_box_demo' );