我已经阻止了对xmlrcp的访问,并删除了中生成的大部分内容wp_head
. 然而,我仍然在管理员中收到关于帖子上张贴评论的通知,即使该页面上没有表单。这怎么可能?
I\'m thinking that this below would work:
// Remove comment support
add_action( \'init\', function() {
remove_post_type_support( \'page\', \'comments\' );
remove_post_type_support( \'post\', \'comments\' );
});
// Close open comments
add_filter( \'comments_open\', function( $open, $post_id ) {
$post = get_post( $post_id );
if ( \'page\' == $post->post_type || \'post\' == $post->post_type )
$open = false;
return $open;
}, 10, 2 );
然而,无论上述方法是否有效,我仍然想知道,当页面上没有表单或任何内容时,如何有人/或垃圾邮件机器人能够发布评论。