为什么我的Wordpress评论的日期错误?

时间:2010-03-10 04:47:25

标签: wordpress date comments

目前,每条评论与原始帖子的日期相同。

主题函数PHP:

<div class="comment-meta commentmetadata">
<?php comment_author_link() ?><?php _e('&nbsp;said:&nbsp;','my-theme-here');?>
<?php comment_date(__('Y.m.d','my-theme-here')) ?>&nbsp;<?php comment_time(__('H:i','my-theme-here')) ?>
</div>

有什么想法? (或我需要粘贴的其他代码)

1 个答案:

答案 0 :(得分:1)

据我从Wordpress文档中可以看出,并查看一些不同的主题,包括默认主题,comment_time不带任何参数。请尝试使用<?php comment_time() ?>。与<?php comment_date() ?>

相同