You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

42 lines
1.3 KiB

<?php
/**
* Template part for displaying posts.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Akina
*/
?>
<article class="post works-list" itemscope="" itemtype="http://schema.org/BlogPosting">
<div class="works-entry">
<div class="works-main">
<div class="works-feature">
<?php if ( has_post_thumbnail() ) { ?>
<a href="<?php the_permalink();?>"><?php the_post_thumbnail('large'); ?></a>
<?php } else {?>
<a href="<?php the_permalink();?>"><img src="<?php echo DEFAULT_FEATURE_IMAGE(); ?>" /></a>
<?php } ?>
</div>
<div class="works-overlay">
<h1 class="works-title"><a href="<?php the_permalink();?>"><?php the_title();?></a></h1>
<div class="works-p-time">
<i class="iconfont icon-calendar"></i> <?php echo poi_time_since(strtotime($post->post_date_gmt));//the_time('Y-m-d');?>
</div>
<div class="works-meta">
<div class="works-comnum">
<span><i class="iconfont icon-mark"></i> <?php comments_popup_link('暂无', '1 ', '% '); ?></span>
</div>
<div class="works-views">
<span><i class="iconfont icon-attention"></i> <?php echo get_post_views(get_the_ID()); ?> </span>
</div>
</div>
<a class="worksmore" href="<?php the_permalink(); ?>"></a>
</div>
<!-- .entry-footer -->
</div>
</div>
</article><!-- #post-## -->