default_topic_count_scale()
Default topic count scaling for tag links.
No Hooks.
Return
Int
. Scaled count.
Usage
default_topic_count_scale( $count );
- $count(int) (required)
- Number of posts with that tag.
Changelog
Since 2.9.0 | Introduced. |
default_topic_count_scale() default topic count scale code WP 6.3
function default_topic_count_scale( $count ) { return round( log10( $count + 1 ) * 100 ); }