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