bp_add_template_stack_locations( array $stacks = array() )
Add template locations to template files being searched for.
Description
Parameters
- $stacks
-
(Optional) Array of template locations.
Default value: array()
Return
(array) Array of all template locations registered so far.
Source
File: bp-core/bp-core-template-loader.php
// Loop through locations and stacks and combine.
foreach ( (array) $stacks as $stack ) {
foreach ( (array) $locations as $custom_location ) {
$retval[] = untrailingslashit( trailingslashit( $stack ) . $custom_location );
}
}
/**
* Filters the template locations to template files being searched for.
*
* @since BuddyPress 1.7.0
*
* @param array $value Array of all template locations registered so far.
* @param array $stacks Array of template locations.
*/
return apply_filters( 'bp_add_template_stack_locations', array_unique( $retval ), $stacks );
}
/**
* Add checks for BuddyPress conditions to 'parse_query' action.
*
* @since BuddyPress 1.7.0
Changelog
| Version | Description |
|---|---|
| BuddyPress 1.7.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.