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' );