- Timestamp:
- 07/19/2017 05:23:30 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/templates/default/bbpress/form-reply-search.php
r6623 r6630 2 2 3 3 /** 4 * Search 4 * Search 5 5 * 6 6 * @package bbPress … … 11 11 defined( 'ABSPATH' ) || exit; 12 12 13 ?>13 if ( bbp_allow_search() ) : ?> 14 14 15 <form role="search" method="get" id="bbp-reply-search-form"> 16 <div> 17 <label class="screen-reader-text hidden" for="ts"><?php esc_html_e( 'Search replies:', 'bbpress' ); ?></label> 18 <input type="text" value="<?php bbp_search_terms(); ?>" name="ts" id="rs" /> 19 <input class="button" type="submit" id="bbp_search_submit" value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>" /> 15 <div class="bbp-search-form"> 16 <form role="search" method="get" id="bbp-reply-search-form"> 17 <div> 18 <label class="screen-reader-text hidden" for="rs"><?php esc_html_e( 'Search replies:', 'bbpress' ); ?></label> 19 <input type="text" value="<?php bbp_search_terms(); ?>" name="rs" id="rs" /> 20 <input class="button" type="submit" id="bbp_search_submit" value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>" /> 21 </div> 22 </form> 20 23 </div> 21 </form> 24 25 <?php endif;
Note: See TracChangeset
for help on using the changeset viewer.