default_topic_count_scale ( $count )
default_topic_count_scale: 这个函数返回标签云中显示的主题数量的默认比例系数。
标签链接的默认主题计数比例。
function default_topic_count_scale( $count ) { return round( log10( $count + 1 ) * 100 ); }