Your IP : 216.73.216.158


Current Path : /home/c/a/p/capemnetty/www/wp-content/themes/flair/loop/
Upload File :
Current File : /home/c/a/p/capemnetty/www/wp-content/themes/flair/loop/loop-social.php

<?php 
	global $post;
	
	$protocols = array(  'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'skype' );
	
	$icons = array(
     	get_post_meta( $post->ID, '_ebor_team_social_icon_1', true ), 
     	get_post_meta( $post->ID, '_ebor_team_social_icon_2', true ),
     	get_post_meta( $post->ID, '_ebor_team_social_icon_3', true ), 
     	get_post_meta( $post->ID, '_ebor_team_social_icon_4', true ),
     	get_post_meta( $post->ID, '_ebor_team_social_icon_5', true ), 
     	get_post_meta( $post->ID, '_ebor_team_social_icon_6', true )
 	);
 	
 	$urls = array(
		esc_url(get_post_meta( $post->ID, '_ebor_team_social_icon_1_url', true ), $protocols), 
		esc_url(get_post_meta( $post->ID, '_ebor_team_social_icon_2_url', true ), $protocols),
		esc_url(get_post_meta( $post->ID, '_ebor_team_social_icon_3_url', true ), $protocols), 
		esc_url(get_post_meta( $post->ID, '_ebor_team_social_icon_4_url', true ), $protocols),
		esc_url(get_post_meta( $post->ID, '_ebor_team_social_icon_5_url', true ), $protocols), 
		esc_url(get_post_meta( $post->ID, '_ebor_team_social_icon_6_url', true ), $protocols),
	);
	
	$urls = array_filter(array_map(NULL, $urls)); 
?>
  
<h3>
   <?php foreach ($urls as $index => $url ) : ?>
   	   <a href="<?php echo $url; ?>" target="_blank"><i class="fa <?php echo $icons[$index]; ?> pad-right15 social"></i></a>
   <?php endforeach; ?>
</h3>