这里有两种解决方案functions.php
. 它们并不是我真正需要的,但可能对其他人有用。
解决方案1可用于关闭某些帖子的评论:
function close_comment_form( $open, $post_id ) {
$post = get_post( $post_id );
if( $post->post_type == \'post\' ) {
return false;
}
return $open;
}
add_filter( \'comments_open\', \'close_comment_form\', 10 , 2 );
解决方案2可通过以下方式隐藏注释表单
display: none;
在CSS选择器上
#HIDEcommentform
:
function my_comment_form_defaults($defaults) {
$defaults[\'id_form\'] = \'HIDEcommentform\';
return $defaults;
}
add_filter(\'comment_form_defaults\', \'my_comment_form_defaults\');