WordPress Version: 4.8
/**
* Default topic count scaling for tag links.
*
* @since 2.9.0
*
* @param int $count Number of posts with that tag.
* @return int Scaled count.
*/
function default_topic_count_scale($count)
{
return round(log10($count + 1) * 100);
}