2021-09-18 01:30:09 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
$posts = get_posts( array(
|
|
|
|
|
'numberposts' => 3,
|
2021-09-20 01:07:53 +03:00
|
|
|
'category' => 22, // пока без категории
|
2021-09-18 01:30:09 +03:00
|
|
|
'orderby' => 'date',
|
|
|
|
|
'order' => 'DESC',
|
|
|
|
|
'include' => array(),
|
|
|
|
|
'exclude' => array(),
|
|
|
|
|
'meta_key' => '',
|
|
|
|
|
'meta_value' =>'',
|
|
|
|
|
'post_type' => 'post',
|
|
|
|
|
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
|
|
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
# вывод поста
|
|
|
|
|
if( $posts ):?>
|
|
|
|
|
|
|
|
|
|
<div id="mosts">
|
2021-09-20 01:07:53 +03:00
|
|
|
<h3 class="most_title">Самое читаемое</h3>
|
2021-09-18 01:30:09 +03:00
|
|
|
<?php foreach($posts as $post):
|
|
|
|
|
setup_postdata( $post );
|
|
|
|
|
?>
|
|
|
|
|
|
2021-09-20 01:07:53 +03:00
|
|
|
<div class="most"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></div>
|
2021-09-18 01:30:09 +03:00
|
|
|
|
|
|
|
|
<?php endforeach;?>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php wp_reset_postdata();
|
|
|
|
|
|
|
|
|
|
endif?>
|