Files
agroexpert/partials/pinned-post-mob.php

24 lines
728 B
PHP
Raw Normal View History

2024-04-03 22:24:30 +03:00
<?php
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-04-03 22:58:59 +03:00
if ($pinned_post):
$mainpost_id = $pinned_post->ID;
?>
2024-04-03 22:24:30 +03:00
2025-04-28 10:32:47 +03:00
<div class="maintitle-mob">Тема дня</div>
2024-04-03 22:24:30 +03:00
<div class="article-item__text article-item-mob">
2024-04-03 22:58:59 +03:00
2024-04-03 22:24:30 +03:00
<a href="<?php echo get_permalink($pinned_post->ID); ?>" class="article-item__image-container">
2025-04-18 19:44:26 +03:00
<?=render_webp_picture_by_post( $pinned_post->ID ); ?>
2024-04-03 22:24:30 +03:00
</a>
<div class="article-item__text">
<a href="<?php echo get_permalink($pinned_post->ID); ?>" class="subtitle-16 article-item__link"><?php echo get_the_title($pinned_post->ID); ?></a>
<p class="article-item__descr text-13"><?php echo get_the_excerpt($pinned_post->ID); ?></p>
</div>
2024-04-03 22:58:59 +03:00
</div>
2024-04-03 22:24:30 +03:00
<?php endif; ?>