''), $atts )); $sponsor = new WP_Query( array( 'post_type' => 'sponsor', 'post_status' => 'publish','posts_per_page'=>$show) ); echo '
'; } //2 ****************** Sponsors List Style 2 Shortcode ***********************// function beevent_sponsors_style2($atts){ extract( shortcode_atts(array('show' =>''), $atts )); $sponsor = new WP_Query( array( 'post_type' => 'sponsor', 'post_status' => 'publish','posts_per_page'=>$show) ); echo '
'; while ($sponsor->have_posts() ) : $sponsor->the_post(); ?>
'; } //3 ****************** Sponsors List Style 3 Shortcode ***********************// function beevent_sponsors_style3($atts){ extract( shortcode_atts(array('show' =>''), $atts )); echo '
'; $sponsor = new WP_Query( array( 'post_type' => 'sponsor', 'post_status' => 'publish','posts_per_page'=>$show) ); echo '
'; }