Files
agroexpert/partials/pinned-post.php

25 lines
692 B
PHP
Raw Normal View History

2024-03-01 17:47:03 +03:00
<?php
2024-04-03 22:24:30 +03:00
2024-05-24 21:37:57 +03:00
$pinned_post = get_latest_sticky_post_by_category(19);
2024-04-03 22:24:30 +03:00
2024-03-01 17:47:03 +03:00
if ($pinned_post) :
?>
<a href="<?php echo get_permalink($pinned_post->ID); ?>" class="hero-banner">
<div class="hero-banner__bg">
2024-03-12 09:16:19 +03:00
<?= show_post_image($pinned_post->ID); ?>
2024-03-01 17:47:03 +03:00
</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>
2025-02-04 00:19:35 +03:00
2024-03-01 17:47:03 +03:00
</a>
<?php endif; ?>