目前,每条评论都与原始帖子的日期相同。
主题函数PHP:
<div class="comment-meta commentmetadata">
<?php comment_author_link() ?><?php _e(' said: ','my-theme-here');?>
<?php comment_date(__('Y.m.d','my-theme-here')) ?> <?php comment_time(__('H:i','my-theme-here')) ?>
</div>有什么想法吗?(或者我需要在这里粘贴的其他代码)
发布于 2010-03-11 10:07:40
据我所知,根据Wordpress文档,以及一些不同的主题,包括默认主题,comment_time不接受任何参数。请尝试使用<?php comment_time() ?>。与<?php comment_date() ?>相同
https://stackoverflow.com/questions/2414587
复制相似问题