<?php
$s = get_search_query();
?>
<div class="result_search">
<?php
$args = array(
'post_type' => 'page',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'products',
'field' => 'slug',
'terms' => array('portfolio_post'),
'include_children' => true,
),
)
);
$loop = new WP_Query( $args );
if($loop->have_posts()) :
while ( $loop->have_posts() ) : $loop->the_post();
?>
<div class="result_search__title"><?php the_title(); ?></div>
<div class="result_search__content">Триплекс – это многослойный инновационный материал, который изготавливается путём склеивания [...]</div>
<div class="result_search__link">
<a href="<?php the_permalink(); ?>"><?php the_permalink(); ?></a>
</div>
<?php
endwhile; endif; wp_reset_query();
?>
</div>
<p class="search_page"> <?php printf( __( 'Результаты поиска: %s', 'twentyten' ), '' . get_search_query() . '' ); // Динамический заголовок поиска?></p>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); // Начало цикла ?>
<div class="category-text">
<h3 class="entry-header"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } // Проверяем наличие миниатюры, если есть показываем ?>
<?php the_content(); // Содержимое страницы ?>
</div>
<?php endwhile; // Конец цикла ?>