Files
vij/blocks/mosts.php

36 lines
874 B
PHP
Raw Normal View History

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