function agama_render_blog_post_date()
 {
     global $post;
     // If not single post
     if (!is_single()) {
         echo '<div class="entry-date">';
         echo '<div class="date-box updated">';
         echo sprintf('<span class="date">%s</span>', get_the_time('d'));
         // Get day
         echo sprintf('<span class="month-year">%s</span>', get_the_time('m, Y'));
         // Get month, year
         echo '</div>';
         echo '<div class="format-box">';
         echo sprintf('%s', Agama::post_format());
         echo '</div>';
         echo '</div><!-- .entry-date -->';
     }
 }
Exemplo n.º 2
0
				<li><i class="fa fa-folder-open"></i> <?php 
    echo get_the_category_list(', ');
    ?>
</li>
				<li><a href="<?php 
    the_permalink();
    ?>
#comments"><i class="fa fa-comments"></i> <?php 
    echo Agama::comments_count();
    ?>
</a></li>
				<li><a href="<?php 
    the_permalink();
    ?>
"><?php 
    echo Agama::post_format();
    ?>
</a></li>
			</ul><!--.entry-meta-->
			<?php 
}
?>
			
			<!-- Entry Content -->
			<div class="entry-content">
				
				<?php 
the_excerpt();
?>

			</div><!--.entry-content -->