File "form-search-20241105232709.php"
Full Path: /home/jlklyejr/public_html/post-date/wp-content/plugins/bbpress/templates/default/bbpress/form-search-20241105232709.php
File size: 705 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Search
*
* @package bbPress
* @subpackage Theme
*/
// Exit if accessed directly
defined( 'ABSPATH' ) || exit;
if ( bbp_allow_search() ) : ?>
<div class="bbp-search-form">
<form role="search" method="get" id="bbp-search-form">
<div>
<label class="screen-reader-text hidden" for="bbp_search"><?php esc_html_e( 'Search for:', 'bbpress' ); ?></label>
<input type="hidden" name="action" value="bbp-search-request" />
<input type="text" value="<?php bbp_search_terms(); ?>" name="bbp_search" id="bbp_search" />
<input class="button" type="submit" id="bbp_search_submit" value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>" />
</div>
</form>
</div>
<?php endif;