bp_core_avatar_full_height()
Get the ‘full’ avatar height setting.
Description Description
Return Return
(int) The 'full' height.
Source Source
File: bp-core/bp-core-avatars.php
function bp_core_avatar_full_height() {
/**
* Filters the 'full' avatar height setting.
*
* @since 1.5.0
*
* @param int $value Value for the 'full' avatar height setting.
*/
return apply_filters( 'bp_core_avatar_full_height', bp_core_avatar_dimension( 'full', 'height' ) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |