-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsearchform.php
27 lines (24 loc) · 1.09 KB
/
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
<form role="search" method="get" class="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<div class="input-container">
<input type="search" class="search-input"
value="<?php echo esc_attr( get_search_query() ); ?>"
name="s"
placeholder="<?php esc_attr_e( 'Search entire website... ', 'hovercraft' ); ?>" />
<button type="submit" class="search-submit" name="submit">
<?php
$hovercraft_layout_icons = get_theme_mod( 'hovercraft_layout_icons', 'material_icons_classic' );
if ( $hovercraft_layout_icons === 'material_icons_classic' ) {
?>
<i class="material-icons search">search</i>
<?php
} elseif ( $hovercraft_layout_icons === 'font_awesome_version_6' ) {
?>
<i class="fas fa-search"></i>
<?php
}
?>
</button>
</div><!-- input-container -->
</form><!-- searchform -->
<!-- Ref: https://codepen.io/jessuppi/pen/pomVZrr -->
<!-- Ref: ChatGPT -->