-
Notifications
You must be signed in to change notification settings - Fork 17
/
search.php
45 lines (36 loc) · 1 KB
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* The template for displaying search pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Rosa2 Lite
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php if ( have_posts() ) { ?>
<header class="entry-header">
<div class="entry-content has-text-align-center">
<h1 class="page-title has-text-align-center">
<?php
/* translators: %s: The search query */
printf( esc_html__( 'Search results for: %s', '__theme_txtd' ), get_search_query() ); ?>
</h1>
</div>
</header><!-- .page-header -->
<div class="entry-content">
<?php
get_template_part( 'template-parts/loop' );
rosa2_lite_the_posts_pagination(); ?>
</div>
<?php } else {
get_template_part( 'template-parts/content', 'none' );
} ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_footer();