Files
vij/blocks/zakons.php

32 lines
749 B
PHP
Raw Normal View History

2021-11-02 13:01:47 +03:00
<?php
# три последних эвента
2023-07-28 11:59:42 +03:00
$zakon_posts = get_posts( array(
2021-11-02 13:01:47 +03:00
'numberposts' => 2,
'category' => 6,
'post_type' => 'post',
//'post_status' => 'publish, future',
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
) );
# вывод поста
2023-07-28 11:59:42 +03:00
if( $zakon_posts ):?>
2021-11-02 13:01:47 +03:00
<div class="publs_right">
<div class="publs_right_title">Законодательство</div>
2023-07-28 11:59:42 +03:00
<?foreach($zakon_posts as $zakon):
//setup_postdata( $post );
2021-11-02 13:01:47 +03:00
?>
<div class="publs_right_item">
2023-07-28 11:59:42 +03:00
<a href="<?=get_permalink($zakon);?>"><?php echo $zakon->post_title;?></a>
2021-11-02 13:01:47 +03:00
</div>
<?php endforeach;?>
</div>
2023-07-28 11:59:42 +03:00
<?endif;?>