default_topic_count_scale()
Default topic count scaling for tag links.
No Hooks.
Returns
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 7.1
function default_topic_count_scale( $count ) {
return (int) round( log10( $count + 1 ) * 100 );
}