32 lines
752 B
PHP
32 lines
752 B
PHP
<?php
|
|
|
|
$posts = get_posts( array(
|
|
'numberposts' => 1,
|
|
'category' => 7, // 7 - мнения
|
|
'orderby' => 'date',
|
|
'order' => 'DESC',
|
|
'include' => array(),
|
|
'exclude' => array(),
|
|
'meta_key' => '',
|
|
'meta_value' =>'',
|
|
'post_type' => 'post',
|
|
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
|
|
) );
|
|
|
|
# вывод поста
|
|
if( $posts ):
|
|
|
|
foreach($posts as $post):
|
|
setup_postdata( $post );
|
|
?>
|
|
|
|
|
|
<img class="left_preview" src="<?php echo get_the_post_thumbnail_url($post, 'left-thumb');?>" alt="<?the_title();?>">
|
|
<a href="<?php the_permalink(); ?>"><?php the_title();?></a>
|
|
|
|
<?php endforeach;
|
|
|
|
wp_reset_postdata();
|
|
|
|
endif;
|