default_topic_count_scale

函数
default_topic_count_scale ( $count )
参数
  • (int) $count Number of posts with that tag.
    Required:
返回值
  • (int) Scaled count.
定义位置
相关方法
default_topic_count_textget_default_comment_status_default_wp_die_handlerdefault_password_nag_edit_userrestore_current_locale
引入
2.9.0
弃用
-

default_topic_count_scale: 这个函数返回标签云中显示的主题数量的默认比例系数。

标签链接的默认主题计数比例。

function default_topic_count_scale( $count ) {
	return round( log10( $count + 1 ) * 100 );
}

常见问题

FAQs
查看更多 >