26 lines
1.1 KiB
PHP
26 lines
1.1 KiB
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
$sticky_posts = get_option('sticky_posts');
|
|||
|
|
|
|||
|
|
// Получаем последний идентификатор прилепленного поста
|
|||
|
|
$last_sticky_post_id = end($sticky_posts);
|
|||
|
|
|
|||
|
|
// Получаем объект поста по его идентификатору
|
|||
|
|
$pinned_post = get_post($last_sticky_post_id);
|
|||
|
|
|
|||
|
|
if ($pinned_post):?>
|
|||
|
|
|
|||
|
|
<div сlass="main-title-mob" style="font-weight: bold; color: #006842; margin: 12px 0 12px 0;">Главное</div>
|
|||
|
|
|
|||
|
|
<div class="article-item__text article-item-mob">
|
|||
|
|
<a href="<?php echo get_permalink($pinned_post->ID); ?>" class="article-item__image-container">
|
|||
|
|
<?=show_post_image( $pinned_post->ID ); ?>
|
|||
|
|
<div class="tag article-item__tag"><?=esc_html(get_category_name($pinned_post));?></div>
|
|||
|
|
</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>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<?php endif; ?>
|