26 lines
		
	
	
		
			753 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			753 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?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" class="search-form" method="get" id="bbp-reply-search-form">
 | |
| 			<label for="rs">
 | |
| 				<span class="screen-reader-text"><?php esc_html_e( 'Search for:', 'kadence' ); ?></span>
 | |
| 				<input type="search" value="<?php bbp_search_terms(); ?>" placeholder="<?php esc_attr_e( 'Search ...', 'kadence' ); ?>" name="rs" id="rs" class="search-field" />
 | |
| 			</label>
 | |
| 			<input class="search-submit" type="submit" value="<?php esc_attr_e( 'Search', 'kadence' ); ?>" />
 | |
| 			<?php do_action( 'bbpress_end_form_search' ); ?>
 | |
| 		</form>
 | |
| 	</div>
 | |
| 
 | |
| <?php endif;
 |