WordPress 4.2以后在前臺(tái)自動(dòng)加載了Emoji表情資源,由于目前一些主題仍在用一些自定義的表情,因此會(huì)出現(xiàn)各種的出錯(cuò)。例如發(fā)的表情和顯示的表情會(huì)不一樣等等問題。
如果修改主題的話,又比較麻煩,那么,最直接簡單除暴的辦法就是,禁用咯!
將以下代碼放到functions.php中:
// Delete WordPress Emoji
remove_action( 'admin_print_scripts' , 'print_emoji_detection_script');
remove_action( 'admin_print_styles' , 'print_emoji_styles');
remove_action( 'wp_head' , 'print_emoji_detection_script', 7);
remove_action( 'wp_print_styles' , 'print_emoji_styles');
remove_filter( 'the_content_feed' , 'wp_staticize_emoji');
remove_filter( 'comment_text_rss' , 'wp_staticize_emoji');
remove_filter( 'wp_mail' , 'wp_staticize_emoji_for_email');
如果你是使用蘇醒的vfilmtime2014主題,請把上面的代碼加入到主題目錄中的includes文件夾里的add.php中即可。
如果你是使用蘇醒的traveler主題,請把上面的代碼加入到主題目錄中里的functions_suxingme.php中即可。
]]>