Files
cnt-sindikatua/search.php
2025-07-14 07:33:32 +00:00

19 lines
364 B
PHP

<?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 );