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