buddypress_locale_locations
Filters the locations to load language files from.
Description
Parameters (1)
- 0. $array (array) =>
array( trailingslashit( WP_LANG_DIR . '/' . $domain ), trailingslashit( WP_LANG_DIR ), )
- Array of directories to check for language files in.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'buddypress_locale_locations', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the buddypress_locale_locations callback
- function filter_buddypress_locale_locations( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'buddypress_locale_locations', 'filter_buddypress_locale_locations', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'buddypress_locale_locations', 'filter_buddypress_locale_locations', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-core/bp-core-functions.php
- $locations = apply_filters( 'buddypress_locale_locations', array(