30 lines
488 B
PHP
30 lines
488 B
PHP
<?php get_header(); ?>
|
|
|
|
|
|
<!-- section -->
|
|
<section id="content">
|
|
|
|
|
|
<div class="archivetitle">
|
|
<!-- <h1><?php //echo get_search_query(); ?></h1> -->
|
|
<h1><?php
|
|
echo sprintf( __( '%s search results for', 'dis2019' ), $wp_query->found_posts ) . ': ';
|
|
echo get_search_query();
|
|
?>
|
|
</h1>
|
|
</div>
|
|
|
|
|
|
|
|
<?php get_template_part('loop'); ?>
|
|
|
|
<?php get_template_part('loadmore');?>
|
|
|
|
</section>
|
|
<!-- /section -->
|
|
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|