bp_core_avatar_thumb_height()

Get the ‘thumb’ avatar height setting.


Description Description


Return Return

(int) The 'thumb' height.


Top ↑

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' ) );
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.5.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.