WordPress调用当前用户的文章/评论数量

想写好一个作者页面,作者数据是必不可少的,例如用户/作者文章数量和评论数量,这些数据获取也是非常简单的,都有相对应的代码,下面悟空搜一一列出:


1
2
3
4
//当前登录用户
get_current_user_id();
// 或者
global $user_id;

1
2
//文章数量
count_user_posts($user_id )

1
2
3
4
//评论数量
global $wpdb;
$count_user_comments = $wpdb->get_var( $wpdb->prepare("Select count(comment_ID) from $wpdb->comments where user_id = {5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}d", $user_id) );
var_dump($count_user_comments);

原文链接:https://xiaohost.com/1397.html,转载请注明出处。
0

评论0

请先