20 lines
383 B
PHP
Executable File
20 lines
383 B
PHP
Executable File
<?php get_header(); ?>
|
|
|
|
<main role="main">
|
|
<!-- section -->
|
|
<section>
|
|
|
|
<h1><?php echo sprintf( __( '%s Search Results for ', 'iotheme' ), $wp_query->found_posts ); echo get_search_query(); ?></h1>
|
|
|
|
<?php get_template_part('loop'); ?>
|
|
|
|
<?php get_template_part('pagination'); ?>
|
|
|
|
</section>
|
|
<!-- /section -->
|
|
</main>
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|