You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
364 B
18 lines
364 B
<?php
|
|
/**
|
|
* Search results page
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
*/
|
|
|
|
use Timber\Timber;
|
|
|
|
$templates = [ 'templates/search.twig', 'templates/archive.twig', 'templates/index.twig' ];
|
|
|
|
$context = Timber::context(
|
|
[
|
|
'title' => 'Search results for ' . get_search_query(),
|
|
]
|
|
);
|
|
|
|
Timber::render( $templates, $context );
|
|
|