summaryrefslogtreecommitdiff
path: root/searchform.php
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2021-07-21 14:54:07 -0500
committerZach van Rijn <me@zv.io>2021-07-21 14:54:07 -0500
commit9d4123cee1867ee7199b06bdc92d40611f547ecc (patch)
tree6d864e2725242863afed1f8ba12d9c7a9bc63a69 /searchform.php
downloadblog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.gz
blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.bz2
blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.xz
blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.zip
Initial unmodified import from Astra (Version: 3.6.5) @ /wp-content/themes/astra/.
Diffstat (limited to 'searchform.php')
-rw-r--r--searchform.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/searchform.php b/searchform.php
new file mode 100644
index 0000000..803001c
--- /dev/null
+++ b/searchform.php
@@ -0,0 +1,39 @@
+<?php
+/**
+ * Search Form for Astra theme.
+ *
+ * @package Astra
+ * @author Brainstorm Force
+ * @copyright Copyright (c) 2020, Brainstorm Force
+ * @link https://www.brainstormforce.com
+ * @since Astra 3.3.0
+ */
+
+/**
+ * Adding argument checks to avoid rendering search-form markup from other places & to easily use get_search_form() function.
+ *
+ * @see https://themes.trac.wordpress.org/ticket/101061
+ * @since 3.6.1
+ */
+$astra_search_input_placeholder = isset( $args['input_placeholder'] ) ? $args['input_placeholder'] : astra_default_strings( 'string-search-input-placeholder', false );
+$astra_search_show_input_submit = isset( $args['show_input_submit'] ) ? $args['show_input_submit'] : true;
+$astra_search_data_attrs = isset( $args['data_attributes'] ) ? $args['data_attributes'] : '';
+$astra_search_input_value = isset( $args['input_value'] ) ? $args['input_value'] : '';
+
+?>
+<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
+ <label>
+ <span class="screen-reader-text"><?php echo esc_html__( 'Search for:', 'astra' ); ?></span>
+ <input type="search" class="search-field" <?php echo esc_html( $astra_search_data_attrs ); ?> placeholder="<?php echo esc_html( $astra_search_input_placeholder ); ?>" value="<?php echo esc_attr( $astra_search_input_value ); ?>" name="s" tabindex="-1">
+ <?php if ( class_exists( 'Astra_Icons' ) && Astra_Icons::is_svg_icons() ) { ?>
+ <button class="search-submit ast-search-submit" aria-label="<?php echo esc_attr__( 'Search Submit', 'astra' ); ?>">
+ <span hidden><?php echo esc_html__( 'Search', 'astra' ); ?></span>
+ <i><?php Astra_Icons::get_icons( 'search', true ); ?></i>
+ </button>
+ <?php } ?>
+ </label>
+ <?php if ( $astra_search_show_input_submit ) { ?>
+ <input type="submit" class="search-submit" value="Search">
+ <?php } ?>
+</form>
+<?php