BP_Component::parse_query( object $query )
Allow components to parse the main query.
Description Description
Parameters Parameters
- $query
-
(Required) The main WP_Query.
Source Source
File: bp-core/classes/class-bp-component.php
public function parse_query( $query ) {
/**
* Fires in the parse_query method inside BP_Component.
*
* This is a dynamic hook that is based on the component string ID.
*
* @since 1.9.0
*
* @param object $query Main WP_Query object. Passed by reference.
*/
do_action_ref_array( 'bp_' . $this->id . '_parse_query', array( &$query ) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.9.0 | Introduced. |