2021-09-20 01:07:53 +03:00
|
|
|
<?php $posts = get_posts( array(
|
|
|
|
|
'numberposts' => 4,
|
2021-09-24 23:18:38 +03:00
|
|
|
'category' => $category_id, // текущая рубрика
|
2021-09-20 01:07:53 +03:00
|
|
|
'orderby' => 'date',
|
|
|
|
|
'order' => 'DESC',
|
|
|
|
|
'include' => array(),
|
|
|
|
|
'exclude' => array(),
|
|
|
|
|
'meta_key' => '',
|
|
|
|
|
'meta_value' =>'',
|
|
|
|
|
'post_type' => 'post',
|
2021-11-11 23:15:08 +03:00
|
|
|
'post__not_in' => array($post_id),
|
2021-09-20 01:07:53 +03:00
|
|
|
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
|
|
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
# вывод поста
|
|
|
|
|
if( $posts ):?>
|
2021-12-09 22:29:24 +03:00
|
|
|
<?if (LANG_VERSION == 'en'):?>
|
|
|
|
|
<div class="yets_rubric">More on the topic</div>
|
|
|
|
|
<?else:?>
|
|
|
|
|
<div class="yets_rubric">Еще по теме</div>
|
|
|
|
|
<?endif?>
|
2021-09-20 01:07:53 +03:00
|
|
|
|
|
|
|
|
<div class="yets">
|
|
|
|
|
|
|
|
|
|
<?php foreach($posts as $post):
|
|
|
|
|
setup_postdata( $post );?>
|
|
|
|
|
|
|
|
|
|
<div class="yet_card">
|
|
|
|
|
<div class="yet_title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php endforeach;?>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php wp_reset_postdata();
|
|
|
|
|
|
|
|
|
|
endif?>
|
|
|
|
|
|
|
|
|
|
|