Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

VIDEOCORSI

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'CATEGORY' => '',
		), $atts )
	);

	// Code
CODICE

}
add_shortcode( 'VIDEOCORSI', 'custom_shortcode' );