掲示板 WordPRESS

functions.php

// コメント一覧カスタマイズ
function my_list_comments($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; ?>
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
<div id="comment-<?php comment_ID(); ?>">

<div class="comment-listCon">
<div class="comment-info vcard">
<span class="comment-author">
<?php echo get_avatar( $comment, 32 );//アバター画像 48?>
<?php printf(__('名前:<cite class="fn">%s<span class=""></span></cite> :'), get_comment_author_link()); //投稿者の設定 ?>
</span>
<span class="comment-datetime">投稿日:<?php printf(__('%1$s at %2$s'), get_comment_date('Y/m/d'), get_comment_time('H:i')); //投稿日の設定 ?></span>
<span class="comment-edit"><?php edit_comment_link(__('Edit'),' ',''); //編集リンク ?></span>
</div>
<?php if ($comment->comment_approved == '0') : //コメント承認前 ?>
<em><?php _e('Your comment is awaiting moderation.') ?></em>
<?php endif; ?>
<div class="comment-text">
<?php comment_text(); //コメント本文 ?>
</div>
</div>
</div>
<?php
}