function slider_shortcode() { $args = array( 'post_type' => 'slider', 'posts_per_page' => 4 ); $loop = new WP_Query( $args ); $return = ''; return $return; } add_shortcode('slider', 'slider_shortcode');