49 lines
2.0 KiB
PHP
49 lines
2.0 KiB
PHP
<div class="shuoshuo-preview-container shuoshuo-foldable card bg-white shadow-sm border-0" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<?php if ( get_the_title() != '' ) : ?>
|
|
<a class="shuoshuo-title"><?php the_title(); ?></a>
|
|
<?php endif; ?>
|
|
|
|
<div class="shuoshuo-content">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</article>
|
|
<div class="shuoshuo-preview-meta">
|
|
<span>
|
|
<i class="fa fa-calendar-o" aria-hidden="true"></i>
|
|
<span class="shuoshuo-date-month"><?php echo get_the_time('n')?></span> <?php _e('月', 'argon');?>
|
|
<span class="shuoshuo-date-date"><?php echo get_the_time('d')?></span> <?php _e('日', 'argon');?> ,
|
|
<span class="shuoshuo-date-year"><?php echo get_the_time('Y')?></span>
|
|
<div class="post-meta-devide">|</div>
|
|
<i class="fa fa-clock-o" aria-hidden="true"></i>
|
|
<span class="shuoshuo-date-time"><?php echo get_the_time('G:i')?></span>
|
|
</span>
|
|
<?php if ( is_sticky() ) : ?>
|
|
<div class="post-meta-devide">|</div>
|
|
<div class="post-meta-detail post-meta-detail-words">
|
|
<i class="fa fa-thumb-tack" aria-hidden="true"></i>
|
|
<?php _ex('置顶', 'pinned', 'argon');?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php
|
|
$upvote_count = get_shuoshuo_upvotes(get_the_ID());
|
|
$comment_count = get_post(get_the_ID()) -> comment_count;
|
|
?>
|
|
<?php if ( $upvote_count > 0 ) : ?>
|
|
<div class="post-meta-devide">|</div>
|
|
<div class="post-meta-detail post-meta-detail-words">
|
|
<i class="fa fa-thumbs-o-up" aria-hidden="true"></i>
|
|
<?php echo $upvote_count; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $comment_count > 0 ) : ?>
|
|
<div class="post-meta-devide">|</div>
|
|
<div class="post-meta-detail post-meta-detail-words">
|
|
<i class="fa fa-comments-o" aria-hidden="true"></i>
|
|
<?php echo $comment_count; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<a class="shuoshuo-preview-link btn btn-outline-primary btn-icon-only rounded-circle" type="button" href="<?php the_permalink(); ?>">
|
|
<span class="btn-inner--icon"><i class="fa fa-arrow-right"></i></span>
|
|
</a>
|
|
</div>
|