- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
27 lines
802 B
PHP
27 lines
802 B
PHP
<?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">
|
|
<label for="bbp_search">
|
|
<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="bbp_search" class="search-field" />
|
|
</label>
|
|
<input type="hidden" name="action" value="bbp-search-request" />
|
|
<input class="search-submit" type="submit" value="<?php esc_attr_e( 'Search', 'kadence' ); ?>" />
|
|
<?php do_action( 'bbpress_end_form_search' ); ?>
|
|
</form>
|
|
</div>
|
|
|
|
<?php endif;
|