How to get the count

时间:2018-11-01 作者:Sammu Sundar

如何获取WP_User_Query 结果使用时

$query = new WP_User_Query( $args );
echo count($query);
没有用户时返回1。但在这种情况下我需要0。

如何获取用户数?

1 个回复
最合适的回答,由SO网友:sandrodz 整理而成

您应该使用total_users 属性:

$query = new WP_User_Query( $args );    
$query->total_users;
get_total 方法:

$query = new WP_User_Query( $args );    
$query-> get_total();
文档是您的朋友:https://codex.wordpress.org/Class_Reference/WP_User_Query

结束