Files
agroexpert/partials/pinned-post.php
argoexpert press b999114b8e rename theme day
2025-04-28 10:32:47 +03:00

25 lines
701 B
PHP

<?php
$pinned_post = get_latest_sticky_post_by_category(19);
if ($pinned_post) :
?>
<a href="<?php echo get_permalink($pinned_post->ID); ?>" class="hero-banner">
<div class="hero-banner__bg">
<?=render_webp_picture_by_post( $pinned_post->ID );?>
</div>
<p class="hero-banner__main">Тема дня</p>
<div class="hero-banner__content">
<p class="hero-banner__title subtitle-16">
<?php echo get_the_title($pinned_post->ID); ?>
</p>
<p class="hero-banner__text text-13">
<?php echo get_the_excerpt($pinned_post->ID); ?>
</p>
</div>
</a>
<?php endif; ?>