Example #1
0
" rel="bookmark"><i class="icon-entypo-clock"></i><?php 
    vw_the_post_date();
    ?>
</a>
		<?php 
}
?>
	</div>

	<div class="vw-post-meta-right">
		<?php 
vw_the_post_views();
?>

		<?php 
vw_the_likes();
?>

		<?php 
vw_the_comment_link();
?>
		
		<?php 
if (is_single()) {
    ?>
		<div class="vw-post-shares">
			<a class="vw-post-share vw-post-share-facebook" href="http://www.facebook.com/sharer.php?u=<?php 
    echo urlencode(get_permalink());
    ?>
&amp;t=<?php 
    echo urlencode(get_the_title());
Example #2
0
 function vwplk_like_shortcode($atts, $content = null)
 {
     ob_start();
     vw_the_likes();
     return ob_get_clean();
 }