/*
* @Project : 统计本周文章数量
* @Author : Huliku
* @Url : huliku.com
* @LastEditTime : 2023-06-26 02:23:48
* @Email : ihuliku@qq.com
*/
function get_posts_count_from_last_168h($post_type ='post') {
global $wpdb;
$numposts = $wpdb->get_var(
$wpdb->prepare(
"SELECT COUNT(ID) ".
"FROM {$wpdb->posts} ".
"WHERE ".
"post_status='publish' ".
"AND post_type= %s ".
"AND post_date> %s",
$post_type, date('Y-m-d H:i:s', strtotime('-168 hours'))
)
);
return $numposts;
}
Fatal error: Uncaught Error: Call to undefined function tb_xzh_head_var() in /www/wwwroot/www.jsyacgcy.com/wp-content/themes/zibll/header.php:25
Stack trace:
#0 /www/wwwroot/www.jsyacgcy.com/wp-includes/template.php(810): require_once()
#1 /www/wwwroot/www.jsyacgcy.com/wp-includes/template.php(745): load_template()
#2 /www/wwwroot/www.jsyacgcy.com/wp-includes/general-template.php(48): locate_template()
#3 /www/wwwroot/www.jsyacgcy.com/wp-content/themes/zibll/author.php(14): get_header()
#4 /www/wwwroot/www.jsyacgcy.com/wp-includes/template-loader.php(106): include('/www/wwwroot/ww...')
#5 /www/wwwroot/www.jsyacgcy.com/wp-blog-header.php(19): require_once('/www/wwwroot/ww...')
#6 /www/wwwroot/www.jsyacgcy.com/index.php(17): require('/www/wwwroot/ww...')
#7 {main}
thrown in /www/wwwroot/www.jsyacgcy.com/wp-content/themes/zibll/header.php on line 25