mirror of
https://ghproxy.net/https://github.com/AlxMedia/cardstyle.git
synced 2025-08-26 07:52:36 +08:00
13 lines
No EOL
773 B
PHP
13 lines
No EOL
773 B
PHP
<?php $format = get_post_format(); ?>
|
|
|
|
<div class="featured-item-wrap">
|
|
<div class="featured-item" style="background-image:url('<?php the_post_thumbnail_url('cardstyle-medium'); ?>');">
|
|
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-play"></i></span>'; ?>
|
|
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-volume-up"></i></span>'; ?>
|
|
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-star"></i></span>'; ?>
|
|
<a class="featured-link" href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
|
<div class="featured-content">
|
|
<h3 class="featured-title"><?php the_title(); ?></h3>
|
|
</div>
|
|
</div>
|
|
</div>
|