温馨提醒:本文最后更新于2019年1月16日,已超过 5 年没有更新,涉及的内容可能已经失效!!
新版本的WP会在头部自动添加emoji代码,如果网站用了https的话,加载这个js后会报不安全。
解决方法:在主题的function.php最后添加如下代码
// REMOVE WP EMOJI
remove_action('wp_head', 'print_emoji_detection_script', 7);
remove_action('wp_print_styles', 'print_emoji_styles');
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
remove_action( 'admin_print_styles', 'print_emoji_styles' );