''), $atts )); $speaker = new WP_Query(array('post_type' => 'speaker', 'post_status' => 'publish','posts_per_page'=> $show, 'orderby' => 'rand')); while ($speaker->have_posts() ) : $speaker->the_post(); echo '
'; echo '
'; if ( has_post_thumbnail() ): the_post_thumbnail('large', array('class' => 'img-responsive center-block')); else: echo "
"; endif; echo '
'; echo '
'; echo '
'; echo '
'; echo '
'; the_title(); echo '
'; $destination = get_post_meta(get_the_ID(),'Be_destination', true ); if (!empty( $destination)): echo '
'.esc_html($destination).'
'; endif; echo '
'; endwhile; wp_reset_query(); echo '
'; } //2 ******************Speaker List Style 2 Shortcode ***********************// function beevent_speaker_style2($atts){ extract( shortcode_atts(array('show' =>''), $atts )); $speaker = new WP_Query(array('post_type' => 'speaker', 'post_status' => 'publish','posts_per_page'=>$show, 'orderby' => 'rand')); ?> '; while ($speaker->have_posts() ) : $speaker->the_post(); echo '
'; echo '
'; if ( has_post_thumbnail() ): the_post_thumbnail('large', array('class' => 'img-responsive center-block')); else: echo "
"; endif; echo '
'; echo '
'; echo '
'; echo '
'; the_title(); echo '
'; $destination = get_post_meta(get_the_ID(),'Be_destination', true ); if (!empty( $destination)): echo '
'.esc_html($destination).'
'; endif; echo '
'; endwhile; wp_reset_query(); echo '
'; } //3 ******************Speaker List Style 3 Shortcode ***********************// function beevent_speaker_style3($atts){ extract( shortcode_atts(array('show' =>''), $atts )); $speaker = new WP_Query( array( 'post_type' => 'speaker', 'post_status' => 'publish','posts_per_page'=>$show, 'orderby' => 'rand') ); while ( $speaker->have_posts() ) : $speaker->the_post(); echo '
'; if ( has_post_thumbnail() ): echo '
'; the_post_thumbnail('beevent_small', array('class' => 'img-responsive center-block')); echo '
'; endif; echo '
'; echo '
'; the_title(); echo '
'; $destination = get_post_meta(get_the_ID(),'Be_destination', true ); if (!empty( $destination)): echo ''.esc_html($destination).''; endif; the_excerpt(); echo '
    '; $facebook_link = get_post_meta(get_the_ID(),'Be_facebook_link', true ); if (!empty( $facebook_link)): echo '
  • '; endif; $linkedin_link = get_post_meta(get_the_ID(),'Be_linkedin_link', true ); if (!empty( $linkedin_link)): echo '
  • '; endif; $google_link = get_post_meta(get_the_ID(),'Be_google_link', true ); if (!empty( $google_link)): echo '
  • '; endif; $twitter_link = get_post_meta(get_the_ID(),'Be_twitter_link', true ); if (!empty( $twitter_link)): echo '
  • '; endif; echo '
'; endwhile; wp_reset_query(); } //4 ******************Beevent Speaker List Style 4 Shortcode ***********************// function beevent_speaker_style4($atts){ extract( shortcode_atts(array('show' =>''), $atts )); $speaker = new WP_Query( array( 'post_type' => 'speaker', 'post_status' => 'publish','posts_per_page'=>$show, 'orderby' => 'rand') ); while ( $speaker->have_posts() ) : $speaker->the_post(); echo '
'; if ( has_post_thumbnail() ): echo '
'; the_post_thumbnail('beevent_small', array('class' => 'img-responsive center-block')); echo '
'; endif; echo '
'; echo '
'; the_title(); echo '
'; $destination = get_post_meta(get_the_ID(),'Be_destination', true ); if (!empty( $destination)): echo ''.$destination.''; endif; the_excerpt(); echo '
    '; $facebook_link = get_post_meta(get_the_ID(),'Be_facebook_link', true ); if (!empty( $facebook_link)): echo '
  • '; endif; $linkedin_link = get_post_meta(get_the_ID(),'Be_linkedin_link', true ); if (!empty( $linkedin_link)): echo '
  • '; endif; $google_link = get_post_meta(get_the_ID(),'Be_google_link', true ); if (!empty( $google_link)): echo '
  • '; endif; $twitter_link = get_post_meta(get_the_ID(),'Be_twitter_link', true ); if (!empty( $twitter_link)): echo '
  • '; endif; echo '
'; endwhile; wp_reset_query(); }