Ejemplo n.º 1
0
		<div id="thought-leaders-dropdown" class="topnav-dropdown">
			<h4>FEATURED</h4>
			<div class="row text-center">
				<?php 
foreach (Influencer::get_influencers() as $influencer) {
    ?>

			
				<div class="columns xlarge-6">
					<div class="row">
						<a href="<?php 
    echo get_author_posts_url($influencer->ID);
    ?>
">
							<img class="circular" src="<?php 
    echo Influencer::get_influencer_head($influencer->ID);
    ?>
" />
						</a>
					</div>

					<div class="row">

						<a href="<?php 
    echo get_author_posts_url($influencer->ID);
    ?>
" onclick="console.log('click');">
							<?php 
    echo $influencer->display_name;
    ?>
						</a>
Ejemplo n.º 2
0
			</div>
			
		</header>

		<footer class="full-width-row">
			
			<div class="columns small-6 feed-shares social-stats ">
				<div class="social-share-count"></div>
			</div>

			<?php 
if ($influencer_id) {
    ?>
			<div class="columns small-3 influencer-head  right">
				<img class="influencer-img circular" src="<?php 
    echo Influencer::get_influencer_head($influencer_id);
    ?>
" />
				<p><?php 
    echo $influencer->display_name;
    ?>
</p>
			</div>
			<?php 
}
?>

		</footer>

	</div>
</article>