File: /www/wwwroot/www.213n.cn/wp-content/themes/rk-blogger/template-parts/content.php
<?php
/**
* The template part for displaying content
*
* Author: wbolt team
* Author URI: https://www.wbolt.com
*/
?>
<article class="post">
<div class="inner">
<a class="media-pic" href="<?php echo get_permalink(); ?>">
<?php wbolt_post_thumbnail(); ?>
</a>
<div class="post-cate">
<?php
$cate = get_the_category();
foreach ($cate as $key => $cateItem) {
if ($key < 4) { ?>
<a class="cate-tag" href="<?php echo get_category_link($cateItem->cat_ID); ?>"><?php echo $cateItem->cat_name; ?></a>
<?php
}
}
?>
</div>
<div class="media-body">
<?php the_title(sprintf('<a class="post-title" href="%s">', esc_url(get_permalink())), '</a>');
?>
<div class="summary">
<?php
the_excerpt();
?>
</div>
<div class="post-metas">
<span class="meta-item primary">
<?php echo wbolt_svg_icon('wbsico-time'); ?>
<em><?php the_time('Y.m.d') ?></em>
</span>
<span class="meta-item">
<?php echo wbolt_svg_icon('wbsico-views'); ?>
<em><?php echo wb_get_post_views(get_the_ID()); ?></em>
</span>
<a class="meta-item" href="<?php comments_link(); ?>">
<?php echo wbolt_svg_icon('wbsico-comment'); ?>
<em><?php comments_number('0', '1', '%'); ?></em>
</a>
</div>
</div>
</div>
</article>