define('WP_USE_THEMES', false); //无需使用主题
include_once('./wp-load.php'); //根据wordpress路径来调用 需要同服务器下
//获取某人某天的发帖量,不传$date为某人所有文章数
function get_posts_count($userid,$date) {
global $wpdb;
if($date){
$numposts = $wpdb->get_var(
$wpdb->prepare("SELECT COUNT(ID) FROM `wp_posts` WHERE
`post_author` = $userid
AND post_type= 'post'
AND post_status= 'publish'
AND post_date between '$date 00:00:00' and '$date 23:59:59';")
);
}else{
$numposts = $wpdb->get_var(
$wpdb->prepare("SELECT COUNT(ID) FROM `wp_posts` WHERE
`post_author` = $userid
AND post_type= 'post'
AND post_status= 'publish';")
);
}
return $numposts;
}Wordpress 获取某人某天或者某人所有文章数
文章版权及转载声明
作者:温文曦本文地址:https://wxnotes.com/blog/594.html发布于 2021-07-02
文章转载或复制请以超链接形式并注明出处文曦博客

还没有评论,来说两句吧...