禁止WordPress前台自动加载Emoji表情的方法
WordPress 4.2以后在前台自动加载了Emoji表情资源,很负责的告诉大家,这货越界了,本文就是介绍怎…
WordPress 4.2以后在前台自动加载了Emoji表情资源,很负责的告诉大家,这货越界了,本文就是介绍怎么禁止Emoji表情的方法。
将以下代码放到functions.php中:
// WordPress Emoji Delete 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');
然后,问题解决了!
最后,该组合将加入themebetter主题套餐。
本文属原创,转载请注明原文:https://themebetter.com/wordpress-emoji-delete.html
类别:WordPress教程、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!