ワードプレスで特定の記事のコメント数を取得し表示する方法
<?php query_posts( 'page_id=77' );?> <?php the_post(); ?> コメント数:<?php comments_number('0', '1', '%'); ?>件 <?php wp_reset_query(); ?>
<?php the_post(); ?>
で情報を読み込む。
ワードプレスで特定の記事のコメント数を取得し表示する方法
<?php query_posts( 'page_id=77' );?> <?php the_post(); ?> コメント数:<?php comments_number('0', '1', '%'); ?>件 <?php wp_reset_query(); ?>
<?php the_post(); ?>
で情報を読み込む。