Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Visto content

// Add Shortcode
function atd_visto_contents( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'type' => 'news',
			'limit' => '8',
		),
		$atts
	);

	echo 'content demo';
	die();

}
add_shortcode( 'visto-content', 'atd_visto_contents' );