<?php if( is_page('ID') ): ?>
<h1 id="top_info">Изделия для малышей ручной работы</h1>
<?php else: ?>
<div id="top_info">Изделия для малышей ручной работы</div>
<?php endif; ?>
<?php
$context = array();
$context['page'] = Timber::get_post();
$args = array(
'post_type' => 'tours_cat',
'numberposts' => POSTS_PER_PAGE,
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'tour_type',
'value' => '40',
),
array(
'key' => 'tour_type',
'value' => '30',
),
),
);
$context['posts'] = Timber::get_posts( $args );
Timber::render( 'tours/tours.twig', $context );
?>