bp_core_get_component_search_query_arg( string|null $component = null )
Get the ‘search’ query argument for a given component.
Description
Parameters
- $component
-
(Optional) Component name. Defaults to current component.
Default value: null
Return
(string|bool) Query argument on success. False on failure.
Source
File: bp-core/bp-core-functions.php
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 | function bp_core_get_component_search_query_arg( $component = null ) { if ( ! $component ) { $component = bp_current_component(); } $query_arg = false; if ( isset( buddypress()->{ $component }->search_query_arg ) ) { $query_arg = sanitize_title( buddypress()->{ $component }->search_query_arg ); } /** * Filters the query arg for a component search string. * * @since BuddyPress 2.4.0 * * @param string $query_arg Query argument. * @param string $component Component name. */ return apply_filters( 'bp_core_get_component_search_query_arg' , $query_arg , $component ); } |
Changelog
Version | Description |
---|---|
BuddyPress 2.4.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.