15 lines
302 B
PHP
15 lines
302 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([]);
|
|
|
|
Timber::render( $templates, $context );
|