10
), $atts));
$args = array(
'post_type' => 'yiw_team'
);
if( !is_null( $items ) ) $args['posts_per_page'] = $items;
$team = new WP_Query( $args );
$html = '';
if( !$team->have_posts() )
return $html;
//loop
$html .= '
';
while( $team->have_posts() ) : $team->the_post();
$title = the_title( '', '', false );
$content = get_the_content();
$html .= '- ';
if( has_post_thumbnail() )
$html .= get_the_post_thumbnail( get_the_ID(), 'team-thumb' );
$html .= '
' . $content . '
';
$html .= '';
$html .= ' ';
endwhile;
$html .= '
';
return $html;
}
add_shortcode("team", "yiw_team_func");
?>