为WordPress添加本地头像功能代替Gravatar
WordPress Emoji 的实现方式会调用 http://s.w.org/images/core/emo…
WordPress Emoji 的实现方式会调用 http://s.w.org/images/core/emoji/72×72/ 下的图片来渲染 Emoji,而这个地址是国内访问不了的,所以要禁用 WordPress Emoji 功能,提高网站加载速度,在当前wordpress主题的 functions.php 文件中添加如下代码:
- 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’);
教程来自:水煮鱼
类别:WordPress教程、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!