Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

RICERCA

// Add Shortcode
function custom_shortcode_RICERCA( $atts ) {

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

}
add_shortcode( 'RICERCA', 'custom_shortcode_RICERCA' );