以下是Ferman 在…上wpfr.net
function date_commentaire( ){
$comments = get_comments( array( \'post_id\' => get_the_ID() ));
if ( doing_action( \'wp_ajax_get-comments\' ) )
foreach ( $comments as $comment ) :
$a = $comment->comment_ID;
$b = get_comment_ID();
$date_comment = get_comment_date();
$time_comment = get_comment_time();
if ( $a==$b )
echo \'<p class="commentaire-date">\'.\'Commentaire N°: \'.$comment->comment_ID.\' du: \'.$date_comment.\' à \'.$time_comment.\'</p>\';
endforeach;
return $comment_author_url;
}
add_filter( \'get_comment_author_url\',\'date_commentaire\');
效果很好。我只是将其粘贴到函数中。php子主题,而不是使用建议的插件。