bp_search_get_form_option( string $option, string $default = '', bool $slug = false )

Return settings API option

Description

Parameters

$option

(Required)

$default

(Optional)

Default value: ''

$slug

(Optional)

Default value: false

Return

(mixed)

Source

File: bp-search/bp-search-settings.php

372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
function bp_search_get_form_option( $option, $default = '', $slug = false ) {
 
    // Get the option and sanitize it
    $value = get_option( $option, $default );
 
    // Slug?
    if ( true === $slug ) {
        $value = esc_attr( apply_filters( 'editable_slug', $value ) );
 
        // Not a slug
    } else {
        $value = esc_attr( $value );
    }
 
    // Fallback to default
    if ( empty( $value ) ) {
        $value = $default;
    }
 
    // Allow plugins to further filter the output
    return apply_filters( 'bp_search_get_form_option', $value, $option );
}

Changelog

Changelog
Version Description
BuddyBoss 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.