-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsearch.php
48 lines (42 loc) · 974 Bytes
/
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
46
47
48
<?php
/**
* The Search page of Mynote theme.
*
* @author Terry Lin
* @link https://terryl.in/
*
* @package WordPress
* @subpackage Mynote
* @since 1.0.0
* @version 2.0.0.0
*/
get_header();
?>
<div class="category-header">
<div class="container">
<h1 id="post-title" class="search" itemprop="headline">
<?php echo get_search_query(); ?>
<span class="badge badge-secondary">
<?php echo $wp_query->found_posts; ?>
</span>
</h1>
<div class="term-desctiotion">
<?php
// translators: %s is the number of search results.
echo sprintf( __( '%1$s Search Results for %2$s', 'mynote' ), $wp_query->found_posts, get_search_query() );
?>
</div>
</div>
</div>
<?php
/**
* Hook: mynote_search_headline_after
*
* The width here is wide, style it with proper CSS code.
*/
do_action( 'mynote_search_headline_after' );
?>
<main role="main">
<?php get_template_part( 'template-parts/archive' ); ?>
</main>
<?php get_footer(); ?>