mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-26 09:41:19 +08:00
32 lines
No EOL
1.6 KiB
PHP
32 lines
No EOL
1.6 KiB
PHP
<article id="post-<?php the_ID(); ?>" <?php post_class( array('group', 'grid-item') ); ?>>
|
|
<div class="post-inner post-hover">
|
|
|
|
<div class="post-thumbnail">
|
|
<a href="<?php the_permalink(); ?>">
|
|
<?php hu_the_post_thumbnail( apply_filters( 'hu_grid_thumb_size', 'thumb-medium' ), '', $placeholder = true, $placeholder_size = apply_filters( 'hu_grid_placeholder_size', 'thumb-medium' ) ); ?>
|
|
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fas fa-play"></i></span>'; ?>
|
|
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fas fa-volume-up"></i></span>'; ?>
|
|
<?php if ( is_sticky() ) echo'<span class="thumb-icon"><i class="fas fa-star"></i></span>'; ?>
|
|
</a>
|
|
<?php if ( hu_is_comment_icon_displayed_on_grid_item_thumbnails() ) : ?>
|
|
<a class="post-comments" href="<?php comments_link(); ?>"><i class="far fa-comments"></i><?php comments_number( '0', '1', '%' ); ?></a>
|
|
<?php endif; ?>
|
|
</div><!--/.post-thumbnail-->
|
|
|
|
<div class="post-meta group">
|
|
<p class="post-category"><?php the_category(' / '); ?></p>
|
|
<?php get_template_part('parts/post-list-author-date'); ?>
|
|
</div><!--/.post-meta-->
|
|
|
|
<h2 class="post-title entry-title">
|
|
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array( 'before' => __( 'Permalink to ', 'hueman' ) ) ); ?>"><?php the_title(); ?></a>
|
|
</h2><!--/.post-title-->
|
|
|
|
<?php if (hu_get_option('excerpt-length') != '0'): ?>
|
|
<div class="entry excerpt entry-summary">
|
|
<?php the_excerpt(); ?>
|
|
</div><!--/.entry-->
|
|
<?php endif; ?>
|
|
|
|
</div><!--/.post-inner-->
|
|
</article><!--/.post-->
|