Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Standard Shortcode

Standard Shortcode

// Add Shortcode
function create_redbox( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'Attribut' => 'Wert',
		),
		$atts
	);

}
add_shortcode( 'Rote Box', 'create_redbox' );