20 lines
749 B
PHP
20 lines
749 B
PHP
<?php
|
|
|
|
/**
|
|
* Search
|
|
*
|
|
* @package bbPress
|
|
* @subpackage Theme
|
|
*/
|
|
|
|
?>
|
|
|
|
<form role="search" method="get" id="bbp-search-form" action="<?php bbp_search_url(); ?>">
|
|
<div>
|
|
<label class="screen-reader-text hidden" for="bbp_search"><?php _e( 'Search for:', 'bbpress' ); ?></label>
|
|
<input type="hidden" name="action" value="bbp-search-request" />
|
|
<input tabindex="<?php bbp_tab_index(); ?>" type="text" value="<?php echo esc_attr( bbp_get_search_terms() ); ?>" placeholder="<?php _e( 'Search forum', 'bbpress' ); ?>" name="bbp_search" id="bbp_search" />
|
|
<input tabindex="<?php bbp_tab_index(); ?>" class="button" style="display:none;" type="submit" id="bbp_search_submit" value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>" />
|
|
</div>
|
|
</form>
|