Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

elenco progetti

// Add Shortcode
function custom_shortcode( $atts ) {

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

	// Code
codice
}
add_shortcode( 'progetti_elenco', 'custom_shortcode' );