Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

orbit_media_slider Shortcode

// Add Shortcode
function media_orbit_slider_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'slug' => 'default-slider',
		), $atts )
	);
}
add_shortcode( 'media_orbit_slider', 'media_orbit_slider_shortcode' );