// 统计条func代码 if (!function_exists('get_posts_count_today')) { function get_posts_count_today($post_type = 'post') { $today = date('Y-m-d'); $args = array( 'post_type' => $post_type, 'post_status' => 'publish', 'date_query' => array( array( 'after' => $today . ' 00:00:00', 'before' => $today . ' 23:59:59', 'inclusive' => true, ), ), 'fields' => 'ids', 'nopaging' => true, ); $query = new WP_Query($args); return $query->post_count; } } add_action('wp_footer', 'output_site_stats_js_vars'); function output_site_stats_js_vars() { $count_posts = wp_count_posts(); $published_posts = $count_posts->publish; $today_posts = function_exists('get_posts_count_today') ? get_posts_count_today() : 0; $uptime_days = floor((time() - strtotime("2023-11-11 11:11:11")) / 86400); global $wpdb; $users = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->users"); $comments = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '1'"); $post_view = function_exists('nd_get_all_view') ? nd_get_all_view() : get_option('zibi_pageviews_total', 0); echo ''; } admin-胖猫小栈
admin的头像-胖猫小栈
管理员
这家伙很懒,什么都没有写...
通知图标

欢迎访问胖猫小栈

夸夸语录
看到你的评论,我感觉整个世界都明亮了!