PluginProbe
bbPress / 2.6.17
bbPress v2.6.17
2.6.17 trunk 2.0 2.0-beta-1 2.0-beta-2b 2.0-beta-3 2.0-beta-3b 2.0-rc-2 2.0-rc-3 2.0-rc-4 2.0-rc-5 2.0.1 2.0.2 2.0.3 2.1 2.1-beta-1 2.1-rc1 2.1-rc2 2.1-rc3 2.1-rc4 2.1.1 2.1.2 2.1.3 2.2 2.2.1 All 72 releases
bbpress / templates / default / bbpress / form-search.php

form-search.php in bbPress 2.6.17, at templates/default/bbpress/form-search.php

27 lines 704 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Search
5 *
6 * @package bbPress
7 * @subpackage Theme
8 */
9
10 // Exit if accessed directly
11 defined( 'ABSPATH' ) || exit;
12
13 if ( bbp_allow_search() ) : ?>
14
15 <div class="bbp-search-form">
16 <form role="search" method="get" id="bbp-search-form">
17 <div>
18 <label class="screen-reader-text hidden" for="bbp_search"><?php esc_html_e( 'Search for:', 'bbpress' ); ?></label>
19 <input type="hidden" name="action" value="bbp-search-request" />
20 <input type="text" value="<?php bbp_search_terms(); ?>" name="bbp_search" id="bbp_search" />
21 <input class="button" type="submit" id="bbp_search_submit" value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>" />
22 </div>
23 </form>
24 </div>
25
26 <?php endif;
27