Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $numcomms = $wpdb-> | |
get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '1'"); | |
if (0 < $numcomms) $numcomms = number_format($numcomms); | |
echo "計 ".$numcomms."件のコメントがあります"; ?> |
Screen shot
Note
Description | 投稿、承認されたコメントの総数を取得する。 |
---|---|
WordPress Ver. | 3.3.1 |
Via | – |