default_topic_count_scale()WP 2.9.0

Default topic count scaling for tag links.

Хуков нет.

Возвращает

int. Scaled count.

Использование

default_topic_count_scale( $count );
$count(int) (обязательный)
Number of posts with that tag.

Список изменений

С версии 2.9.0 Введена.

Код default_topic_count_scale() WP 6.5.2

function default_topic_count_scale( $count ) {
	return round( log10( $count + 1 ) * 100 );
}