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 函数参数 useri…
- WordPress
- 2022-02-21
WordPress – 获取某个用户发表的文章数量
1 官方函数 <?php $user_post_count = count_user_posts( $userid , $post_type ); ?> 函数参数: $userid : 用户的ID,必填项 $post_type : 文章类型,默认为 post,选填 2 使用sql函数查询…
- WordPress
- 2021-05-26