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 6.8
function default_topic_count_scale( $count ) { return round( log10( $count + 1 ) * 100 ); }