get_user_count

函数
get_user_count ( $network_id = null )
参数
  • (int|null) $network_id ID of the network. Defaults to the current network.
    Required:
    Default: null
返回值
  • (int) Number of active users on the network.
定义位置
相关方法
get_user_optionget_user_metaget_user_bywp_is_large_user_countget_comment_count
引入
-
弃用
-

get_user_count: 这是一个WordPress函数,用于返回WordPress安装中的注册用户总数: 该函数不需要参数,返回一个代表用户数量的整数。

返回你的安装中的活跃用户数。

请注意,在一个大的网站上,计数可能被缓存,每天只更新两次。

function get_user_count( $network_id = null ) {
	if ( ! is_multisite() && null !== $network_id ) {
		_doing_it_wrong(
			__FUNCTION__,
			sprintf(
				/* translators: %s: $network_id */
				__( 'Unable to pass %s if not using multisite.' ),
				'<code>$network_id</code>'
			),
			'6.0.0'
		);
	}

	return (int) get_network_option( $network_id, 'user_count', -1 );
}

常见问题

FAQs
查看更多 >