您可以使用PHPfunction number_format()
.
function wpb_total_posts() {
$total = wp_count_posts()->publish;
echo number_format(
$total, // your number
0, // number of decimal points
\'.\', // decimal point separator
\',\' // thousands separator
);
}
或者,由于您仍在使用默认值,因此可以将函数缩短为:
function wpb_total_posts() {
echo number_format( wp_count_posts()->publish );
}