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