bp_directory_groups_search_form()

Output group search form on group directory page.

Description

Source

File: bp-groups/bp-groups-template.php

6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
function bp_directory_groups_search_form() {
 
    $query_arg = bp_core_get_component_search_query_arg( 'groups' );
 
    if ( ! empty( $_REQUEST[ $query_arg ] ) ) {
        $search_value = stripslashes( $_REQUEST[ $query_arg ] );
    } else {
        $search_value = bp_get_search_default_text( 'groups' );
    }
 
    $search_form_html = '<form action="" method="get" id="search-groups-form">
        <label for="groups_search"><input type="text" name="' . esc_attr( $query_arg ) . '" id="groups_search" placeholder="'. esc_attr( $search_value ) .'" /></label>
        <input type="submit" id="groups_search_submit" name="groups_search_submit" value="'. __( 'Search', 'buddyboss' ) .'" />
    </form>';
 
    /**
     * Filters the HTML markup for the groups search form.
     *
     * @since BuddyPress 1.9.0
     *
     * @param string $search_form_html HTML markup for the search form.
     */
    echo apply_filters( 'bp_directory_groups_search_form', $search_form_html );
 
}

Changelog

Changelog
Version Description
BuddyPress 1.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.