Files
lamine_wp/web/app/themes/la_mine/search.php
T
2020-05-20 15:48:29 +02:00

19 lines
436 B
PHP
Executable File

<?php
/**
* Search results page
*
* Methods for TimberHelper can be found in the /lib sub-directory
*
* @package WordPress
* @subpackage Timber
* @since Timber 0.1
*/
$templates = array( 'search.twig', 'archive.twig', 'index.twig' );
$context = Timber::context();
$context['title'] = 'Search results for ' . get_search_query();
$context['posts'] = new Timber\PostQuery();
Timber::render( $templates, $context );