null ), $atts)); $args = array( 'post_type' => 'bl_team' ); if( !is_null( $items ) ) $args['posts_per_page'] = $items; $team = new WP_Query( $args ); $html = ''; if( !$team->have_posts() ) return $html; //loop $html .= ''; return $html; } add_shortcode("team", "team_func"); ?>