-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsearchform.php
19 lines (16 loc) · 992 Bytes
/
searchform.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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: ChatGPT -->
<!-- Ref: https://codepen.io/jessuppi/pen/pomVZrr -->