ホーム » ブログ » wordpressでプラグインやウィジェットを使わずコメント一覧を表示

2013/09/05

<ul><?php
$comments = get_comments(array('status' => 'approve', 'number' => 10));
foreach($comments as $comment):
$post = get_post($comment->comment_post_ID);
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>へのコメント
(<?php comment_author_link(); ?>より[<?php comment_date('m/d'); ?>])
<?php comment_text(); ?></li>
<?php endforeach; ?></ul>
下記の部分の数字で表示件数を変更できます。(この場合は10件をリスト表示)
'number' => 10));

Related Posts関連記事

BLOGブログのカテゴリー

HOMEPAGEホームページ制作

SEOSEO対策

OTHERその他のサービス

to Top