WordPress – count_user_posts函数,获取某个用户发表的文章数量
1 count_user_posts函数
1.1 函数原型
count_user_posts( int $userid, array|string $post_type = 'post', bool $public_only = false )
获取用户发表的文章数量。
1.2 函数参数
- userid:int类型,用户ID;
- post_type:array或者string类型,文章类型或者文章类型数组,默认为"post";
- public_only:bool类型,是否只返回公开文章;
1.3 函数返回值
返回指定用户发表的文章数量。
1.4 函数用例
- 获取站长发表的文章数量
$author_id=get_the_author_meta('ID');
$author_post_num = count_user_posts( $author_id, $post_type = 'post', $public_only = true );
- 获取用户ID为2的用户文章数量
$count_num = count_user_posts(2, 'post', false);
- 获取当前用户文章数量
$user_id = get_current_user_id();
$user_post_num = count_user_posts($user_id,'post',true);
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:WordPress – count_user_posts函数,获取某个用户发表的文章数量
原文链接:https://www.stubbornhuang.com/1974/
发布于:2022年02月21日 22:19:39
修改于:2023年06月26日 20:38:45
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论
50