这是我面临的问题。我正在使用 Wordpress,并且正在使用两个 PHP 在我的网站上向访客显示统计信息,例如# total of posts
created 和# of total comments
on the site。PHP 运行良好并显示当前实时#,但它们不呈现逗号,例如2,700
在 which show as2700
和 say for another example 100,800
which shows as 100800
.
谁能告诉我如何修改这两个 php 来实现这一点?
这是帖子状态PHP代码:
<?php
$postcount = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = 'publish'");
echo $postcount;
?>
Here is the comments status php:
<?php
$comments_count = wp_count_comments();
echo "" . $comments_count->total_comments . "";
?>
提前致谢。
-杰伊