File "form-topic-search.php"
Full Path: /home/jlklyejr/public_html/post-date/wp-content/plugins/bbpress/templates/default/bbpress/form-topic-search.php
File size: 620 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-topic-search-form">
<div>
<label class="screen-reader-text hidden" for="ts"><?php esc_html_e( 'Search topics:', 'bbpress' ); ?></label>
<input type="text" value="<?php bbp_search_terms(); ?>" name="ts" id="ts" />
<input class="button" type="submit" id="bbp_search_submit" value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>" />
</div>
</form>
</div>
<?php endif;