2021-11-22 22:22:04 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
$posts = get_posts( array(
|
|
|
|
|
'numberposts' => 1,
|
|
|
|
|
'category' => 3, // 19 - архив газеты
|
|
|
|
|
'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 );
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
<div class="mobile_archive">
|
|
|
|
|
<a href="<?php the_permalink(); ?>"><img width="91" class="mobile_archive_img" src="<?php echo get_the_post_thumbnail_url($post, 'fil');?>" alt="<?the_title();?>"></a>
|
|
|
|
|
<div class="mobile_archive_text">
|
2021-12-15 21:11:53 +03:00
|
|
|
<div><strong><a href="<?php the_permalink(); ?>"><?=vij_lang('gazeta', LANG_VERSION);?></a></strong></div>
|
|
|
|
|
<?if (LANG_VERSION == 'ru'):?>
|
|
|
|
|
<div class="mobile_archive_link"><a href="<?php the_permalink(); ?>"><?=the_title();?></a></div>
|
|
|
|
|
<?endif?>
|
2021-11-22 22:22:04 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php endforeach;
|
|
|
|
|
|
|
|
|
|
wp_reset_postdata();
|
|
|
|
|
|
|
|
|
|
endif;?>
|
|
|
|
|
|
|
|
|
|
<div class="mob-subscript">
|
2021-12-21 15:44:24 +03:00
|
|
|
<div class="mob-block-button">
|
2021-12-15 21:11:53 +03:00
|
|
|
<a class="mob-sub-button" href="https://vetandlife.ru/subscripts"><?=vij_lang('subscript_btn', LANG_VERSION)?></a>
|
2021-11-22 22:22:04 +03:00
|
|
|
</div>
|
2021-12-21 15:44:24 +03:00
|
|
|
</div>
|