Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

slider

short code function

// Add Shortcode
function custom_shortcode() {

	$args = array(
			'public' => true,
			'label'  => 'Slider',
			'supports' => array('title',
	    'author',
	    'thumbnail',
	    'post-formats','excerpt'),
		);
	
		register_post_type('slider_front', $args);

}
add_shortcode( '', 'custom_shortcode' );