Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

tenta_slider

show custon post

// Add Shortcode
function tenta_slide_funson( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'categoria' => 'radio',
			'qtd_slider' => '3',
		),
		$atts
	);

}
add_shortcode( 'slider_emer', 'tenta_slide_funson' );