default_topic_count_scale( int $count ): int

In this article

Default topic count scaling for tag links.

Parameters

$countintrequired
Number of posts with that tag.

Return

int Scaled count.

Source

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

Changelog

VersionDescription
2.9.0Introduced.

User Contributed Notes

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