コメント表示をカスタマイズするには、コメントの配列$commentを回して表示する。
$commentはテーマのcomments.phpからのみ参照できる変数となっている。
[sourcecode language=’php’]
foreach ($comments as $comment) {
custom_comments($comment, null, null);
}
[/sourcecode]
WordPress 2.7よりコールバックを指定することができる。
[sourcecode language=’php’]
wp_list_comments(‘type=comment&callback=custom_comments’);
[/sourcecode]
関数custom_comments()はfunctions.phpに作成しておく。
[sourcecode language=’php’]
function toriko_custom_comments($comment, $args) {
$GLOBALS[‘comment’] = $comment;
?>
- さん
- printf( __('%1$s %2$s', 'kubrick'), get_comment_time(__('F jS, Y', 'kubrick')), get_comment_time(__('H:i', 'inove')) ); ?>