Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Extra Content Shortcode

Embeds content.

// Add Shortcode
function extracontent_function( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'float' => 'right',
		),
		$atts
	);

}
add_shortcode( 'extra', 'extracontent_function' );