Advertisement
rejuancse

template-speaker

Dec 10th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.17 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Display Single Speaker
  4.  *
  5.  * @author      Themeum
  6.  * @category    Template
  7.  * @package     Eventum
  8.  * @version     1.0
  9.  *-------------------------------------------------------------*/
  10.  
  11. if ( ! defined( 'ABSPATH' ) )
  12.     exit; // Exit if accessed directly
  13.  
  14. get_header();
  15. ?>
  16.  
  17. <section id="main" class="clearfix">
  18.  
  19.     <?php require_once 'sub-header.php'; ?>
  20.     <div class="container">
  21.  
  22.             <?php while(have_posts()): the_post(); ?>
  23.  
  24.                     <?php
  25.                     $designation = rwmb_meta('themeum_designation');
  26.                     $company = rwmb_meta('themeum_company');
  27.                     $facebook = rwmb_meta('themeum_facebook_url');
  28.                     $soundcloud = rwmb_meta('themeum_soundcloud_url');
  29.                     $twitter = rwmb_meta('themeum_twitter_url');
  30.                     $dribbble = rwmb_meta('themeum_dribbble_url');
  31.                     $flickr = rwmb_meta('themeum_flickr_url');
  32.                     $google = rwmb_meta('themeum_google_url');
  33.                     $pinterest = rwmb_meta('themeum_pinterest_url');
  34.                     $youtube = rwmb_meta('themeum_youtube_url');
  35.                     $linkedin = rwmb_meta('themeum_linkedin_url');
  36.                     $behance = rwmb_meta('themeum_behance_url');
  37.                     $vk = rwmb_meta('themeum_vk_url');
  38.                     $skype = rwmb_meta('themeum_skype_url');
  39.                     $instagram = rwmb_meta('themeum_instagram_url');
  40.                     ?>
  41.  
  42.  
  43.                     <div class="row">
  44.                             <div class="col-sm-5">
  45.                                 <?php
  46.                                     if (has_post_thumbnail( $post->ID ) ):
  47.                                       $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'speaker-thumb' );
  48.                                       echo '<img class="img-responsive" src="'.esc_url($image[0]).'" alt="'.get_the_title().'">';
  49.                                     endif;
  50.                                 ?>
  51.                             </div>
  52.  
  53.                             <div class="col-sm-7">
  54.  
  55.                                 <h2 class="speaker-title"><?php the_title(); ?></h2>
  56.                                
  57.                                 <?php if ($designation != '' && $company != ''): ?>    
  58.                                     <p class="lead speaker-designation"><?php echo esc_attr($designation); ?> | <?php echo esc_attr($company); ?></p>
  59.                                 <?php endif ?>
  60.  
  61.                                     <div class="speaker-social-icons">
  62.                                         <ul>
  63.                                             <?php if( $facebook != '' ){ ?>
  64.                                                 <li>
  65.                                                     <a target="_blank" class="social-facebook" href="<?php echo esc_url($facebook); ?>"><i class="fa fa-facebook"></i></a>
  66.                                                 </li>
  67.                                             <?php } ?>
  68.                                             <?php if( $soundcloud != '' ){ ?>
  69.                                                 <li>
  70.                                                     <a target="_blank" class="social-soundcloud" href="<?php echo esc_url($soundcloud); ?>"><i class="fa fa-soundcloud"></i></a>
  71.                                                 </li>
  72.                                             <?php } ?>
  73.                                             <?php if( $twitter != '' ){ ?>
  74.                                                 <li>
  75.                                                     <a target="_blank" class="social-twitter" href="<?php echo esc_url($twitter); ?>"><i class="fa fa-twitter"></i></a>
  76.                                                 </li>
  77.                                             <?php } ?>
  78.                                             <?php if( $dribbble != '' ){ ?>
  79.                                                 <li>
  80.                                                     <a target="_blank" class="social-dribbble" href="<?php echo esc_url($dribbble); ?>"><i class="fa fa-dribbble"></i></a>
  81.                                                 </li>
  82.                                             <?php } ?>
  83.                                             <?php if( $flickr != '' ){ ?>
  84.                                                 <li>
  85.                                                     <a target="_blank" class="social-flickr" href="<?php echo esc_url($flickr); ?>"><i class="fa fa-flickr"></i></a>
  86.                                                 </li>
  87.                                             <?php } ?>
  88.                                             <?php if( $google != '' ){ ?>
  89.                                                 <li>
  90.                                                     <a target="_blank" class="social-google-plus" href="<?php echo esc_url($google); ?>"><i class="fa fa-google-plus"></i></a>
  91.                                                 </li>
  92.                                             <?php } ?>
  93.                                             <?php if( $pinterest != '' ){ ?>
  94.                                                 <li>
  95.                                                     <a target="_blank" class="social-pinterest" href="<?php echo esc_url($pinterest); ?>"><i class="fa fa-pinterest"></i></a>
  96.                                                 </li>
  97.                                             <?php } ?>
  98.                                             <?php if( $youtube != '' ){ ?>
  99.                                                 <li>
  100.                                                     <a target="_blank" class="social-youtube" href="<?php echo esc_url($youtube); ?>"><i class="fa fa-youtube"></i></a>
  101.                                                 </li>
  102.                                             <?php } ?>
  103.                                             <?php if( $linkedin != '' ){ ?>
  104.                                                 <li>
  105.                                                     <a target="_blank" class="social-linkedin" href="<?php echo esc_url($linkedin); ?>"><i class="fa fa-linkedin"></i></a>
  106.                                                 </li>
  107.                                             <?php } ?>
  108.                                             <?php if( $behance != '' ){ ?>
  109.                                                 <li>
  110.                                                     <a target="_blank" class="social-behance" href="<?php echo esc_url($behance); ?>"><i class="fa fa-behance"></i></a>
  111.                                                 </li>
  112.                                             <?php } ?>
  113.                                             <?php if( $vk != '' ){ ?>
  114.                                                 <li>
  115.                                                     <a target="_blank" class="social-vk" href="<?php echo esc_url($vk); ?>"><i class="fa fa-vk"></i></a>
  116.                                                 </li>
  117.                                             <?php } ?>
  118.                                             <?php if( $skype != '' ){ ?>
  119.                                                 <li>
  120.                                                     <a target="_blank" class="social-skype" href="skype:<?php echo esc_url($skype); ?>?chat"><i class="fa fa-skype"></i></a>
  121.                                                 </li>
  122.                                             <?php } ?>
  123.                                             <?php if( $instagram != '' ){ ?>
  124.                                                 <li>
  125.                                                     <a target="_blank" class="social-instagram" href="<?php echo esc_url($instagram); ?>"><i class="fa fa-instagram"></i></a>
  126.                                                 </li>
  127.                                             <?php } ?>
  128.                                         </ul>
  129.                                     </div>
  130.                                
  131.                                 <div class="speaker-description"><?php the_content(); ?></div>
  132.                             </div>
  133.                         </div>
  134.  
  135.  
  136.             <?php endwhile; ?>
  137.     </div><!--/.container-->
  138. </section>
  139. <?php get_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement