-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchform.php
29 lines (28 loc) · 1018 Bytes
/
searchform.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
<?php
/**
* The template for displaying search forms in YIKES Starter
*
* @package YIKES Starter
*/
?>
<div class="card card-search">
<div class="card-header">
<h4><?php echo lwtv_plugin()->get_symbolicon( svg: 'search.svg', fontawesome: 'fa-search' ); // phpcs:ignore WordPress.Security.EscapeOutput ?> Search the Database</h4>
</div>
<div class="card-body">
<form role="search" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>" method="get">
<div class="input-group input-group-sm">
<input type="text" name="s" id="sidebar-search" class="form-control" aria-label="Search for..." value="<?php the_search_query(); ?>" title="<?php echo esc_html_x( 'Search for:', 'label', 'lwtv-underscores' ); ?>" >
<?php
if ( ! class_exists( 'Jetpack_Search' ) ) {
?>
<span class="input-group-btn">
<button class="btn btn-primary btn-sm" type="submit">Go</button>
</span>
<?php
}
?>
</div>
</form>
</div><!-- .card-body -->
</div><!-- .card -->