【发布时间】:2014-07-09 13:27:52
【问题描述】:
我在Wordpress中使用comment_form(),评论表单显示出来了,但是实际获得批准的cmets却没有:
这是我的代码
<?php
$comments_args = array(
// remove "Text or HTML to be displayed after the set of comment fields"
'comment_notes_after' => 'Note: Comments are moderated so will not publish immediately.',
// change "Leave a Reply" to "Comment"
'title_reply'=>'What did you think of this story? Please share a comment.',
// change the post comment button
'label_submit' => __( 'Submit your comment' ),
);
comment_form($comments_args);
?>
我已取消选中并检查了设置 -> 讨论下的正确选项
除了comment_form,我还需要另一个电话吗? 这是自定义帖子类型有区别吗?
感谢您的帮助。
【问题讨论】:
-
您是否尝试过
wp_list_comments列出页面的cmets?
标签: wordpress