你可以试着在pre_comment_on_post
钩
add_action(\'pre_comment_on_post\', \'no_wp_comments\');
function no_wp_comments() {
wp_die(\'No comments\');
}
当我使用Facebook评论而不是Wordpress评论时,我会使用它。
下面是一个匿名函数的类似示例:
add_action(\'pre_comment_on_post\', create_function( \'\',\'wp_die("No comments");\'));
但我更喜欢第一个例子,它更容易修改。
这个钩子在文件中wp-comments-post.php
作为:
do_action(\'pre_comment_on_post\', $comment_post_ID);