bp_core_pre_avatar_handle_crop
Filters whether or not to handle cropping.
Description
If you want to override this function, make sure you return false.
Parameters (2)
- 0. $true (bool) =>
true
- Whether or not to crop.
- 1. $r (array)
- Array of parsed arguments for function.
Usage
- To run the hook, copy the example below.
- $true = apply_filters( 'bp_core_pre_avatar_handle_crop', $true, $r );
- if ( !empty( $true ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_core_pre_avatar_handle_crop callback
- function filter_bp_core_pre_avatar_handle_crop( $true, $r ) {
- // make filter magic happen here...
- return $true;
- };
- // add the filter
- add_filter( 'bp_core_pre_avatar_handle_crop', 'filter_bp_core_pre_avatar_handle_crop', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_core_pre_avatar_handle_crop', 'filter_bp_core_pre_avatar_handle_crop', 10, 2 );
Defined (1)
The filter is defined in the following location(s).
- /bp-core/bp-core-avatars.php
- if ( ! apply_filters( 'bp_core_pre_avatar_handle_crop', true, $r ) ) {