default_topic_count_scale()
Default topic count scaling for tag links.
Хуков нет.
Возвращает
int. Scaled count.
Использование
default_topic_count_scale( $count );
- $count(int) (обязательный)
- Number of posts with that tag.
Список изменений
| С версии 2.9.0 | Введена. |
Код default_topic_count_scale() default topic count scale WP 7.0.4
function default_topic_count_scale( $count ) {
return (int) round( log10( $count + 1 ) * 100 );
}