我已经添加了字段country 在评论表单中。工作很好,我可以看到commentmeta表中的值。
现在,我尝试在注释列表中显示此值。
在我的single.php 我将评论列表称为:
<?php wp_list_comments(\'type=comment&callback=format_comment\'); ?>
在我的
functions.php 我设置评论格式:
function format_comment() { ?>
<div class="comment">
<p><?php comment_author(); ?></p>
<p><?php get_comment_meta( $comment->comment_ID, \'country\', true ); ?></p>
<p><?php comment_date(\'Y/m/d - g:i A\'); ?></p>
<p><?php comment_text(); ?></p>
</div>
<?php } ?>
所以。。。获取元的值
country 我使用
<?php get_comment_meta( $comment->comment_ID, \'country\', true ); ?>
没有成功…