国内 WordPress 加速优化技巧:禁用 Emoji 表情功能

WordPress Emoji 其实就是一个表情服务,实现方式会调用调用 http://s.w.org/images/core/emoji/72x72/ 下的图片来渲染 Emoji,而对于国内的 wordpress 用户来说是访问不了的,所以需要禁用 WordPress Emoji 功能,我们只需要在当前主题的 functions.php 文件中添加如下代码:

1
2
3
4
5
6
7
8
9
10
//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');

作者:张子凡

本文链接:https://zhangzifan.com/wordpress-emoji-disable.html


如果给你带来帮助,欢迎微信或支付宝扫一扫,赞一下。