куды $s подставить?
<?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>