WordPress 4.2后 头部多出的Emoji表情的处理方法

下载了最新版的 wordpress4.2,然后搞了一个较新版的主题,主题使用的是国外 emjo 表情包,表情是很不错,但对于不喜欢使用表情评论的童鞋来说,无疑是个累赘,而对于有互联网洁僻的我来说,对于页面源文件加载的一大堆 emjo 表情 js+css 更是觉得很纠心,好了,手动去除开始。

我们有两种解决方法:启用或禁用。

原因分析:脚本就是类似下面的代码:

  1. <script type=“text/javascript”>
  2.  window._wpemojiSettings = {“baseUrl”:“http:\/\/s.w.org\/images\/core\/emoji\/72×72\/”,“ext”:“.png”,“source”:{“concatemoji”:“http:\/\/devework.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.2”}};
  3.  !function(a,b,c){function d(a){var c=b.createElement(“canvas”),d=c.getContext&&c.getContext(“2d”);return d&&d.fillText?(d.textBaseline=“top”,d.font=“600 32px Arial”,“flag”===a?(d.fillText(String.fromCharCode(55356,56812,55356,56807),0,0),c.toDataURL().length>3e3):(d.fillText(String.fromCharCode(55357,56835),0,0),0!==d.getImageData(16,16,1,1).data[0])):!1}function e(a){var c=b.createElement(“script”);c.src=a,c.type=“text/javascript”,b.getElementsByTagName(“head”)[0].appendChild(c)}var f;c.supports={simple:d(“simple”),flag:d(“flag”)},c.supports.simple&&c.supports.flag||(f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
  4.  </script>
  5.  <style type=“text/css”>
  6.  img.wp-smiley,
  7.  img.emoji {
  8.  display: inline !important;
  9.  border: none !important;
  10.  box-shadow: none !important;
  11.  height: 1em !important;
  12.  width: 1em !important;
  13.  margin: 0 .07em !important;
  14.  vertical-align: -0.1em !important;
  15.  background: none !important;
  16.  padding: 0 !important;
  17.  }
  18.  </style>

因为WordPress 更新 4.2 的一个新增功能就是支持 emjo 表情,但看部分加载源居然是 wp.org 的 js 文件。对于大部分人来说,这个是十分鸡肋的功能。

禁用:移除 WordPress 4.2 中前台自动加载的 emoji 脚本

既然功能鸡肋,不如直接移除掉来得更加快捷。代码提取自 Disable Emojis 插件,可以放在主题目录下的 functions.php 文件中:

  1. /**
  2.  * Disable the emoji’s
  3.  */
  4.  function disable_emojis() {
  5.  remove_action( ‘wp_head’, ‘print_emoji_detection_script’, 7 );
  6.  remove_action( ‘admin_print_scripts’, ‘print_emoji_detection_script’ );
  7.  remove_action( ‘wp_print_styles’, ‘print_emoji_styles’ );
  8.  remove_action( ‘admin_print_styles’, ‘print_emoji_styles’ );
  9.  remove_filter( ‘the_content_feed’, ‘wp_staticize_emoji’ );
  10.  remove_filter( ‘comment_text_rss’, ‘wp_staticize_emoji’ );
  11.  remove_filter( ‘wp_mail’, ‘wp_staticize_emoji_for_email’ );
  12.  add_filter( ‘tiny_mce_plugins’, ‘disable_emojis_tinymce’ );
  13.  }
  14.  add_action( ‘init’, ‘disable_emojis’ );
  15. /**
  16.  * Filter function used to remove the tinymce emoji plugin.
  17.  */
  18.  function disable_emojis_tinymce( $plugins ) {
  19.  if ( is_array( $plugins ) ) {
  20.  return array_diff( $plugins, array( ‘wpemoji’ ) );
  21.  } else {
  22.  return array();
  23.  }
  24.  }

启用:转存至本地调用 Emoji 表情

WordPress 官方将此功能会写入正式版一定有其理由。但我们知道 WP 的 CDN 早就被*掉,唯一方法就是转存到本地,使 WP 识别本地 Emoji 表情。

Twitter Emoji 表情包下载,下载后直接解压至主题目录,文件夹名不变。将以下代码放在主题目录下的 functions.php 文件中:

  1. //首先补全wp的表情库
  2.  function smilies_reset() {
  3.  global $wpsmiliestrans, $wp_smiliessearch;
  4.  // don’t bother setting up smilies if they are disabled
  5.  if (!get_option(‘use_smilies’)) {
  6.  return;
  7.  }
  8.  $wpsmiliestrans_fixed = array(
  9.  ‘:mrgreen:’ => “\xf0\x9f\x98\xa2”,
  10.  ‘:smile:’ => “\xf0\x9f\x98\xa3”,
  11.  ‘:roll:’ => “\xf0\x9f\x98\xa4”,
  12.  ‘:sad:’ => “\xf0\x9f\x98\xa6”,
  13.  ‘:arrow:’ => “\xf0\x9f\x98\x83”,
  14.  ‘:-(‘ => “\xf0\x9f\x98\x82”,
  15.  ‘:-)’ => “\xf0\x9f\x98\x81”,
  16.  ‘:(‘ => “\xf0\x9f\x98\xa7”,
  17.  ‘:)’ => “\xf0\x9f\x98\xa8”,
  18.  ‘:?:’ => “\xf0\x9f\x98\x84”,
  19.  ‘:!:’ => “\xf0\x9f\x98\x85”,
  20.  );
  21.  $wpsmiliestrans = array_merge($wpsmiliestrans, $wpsmiliestrans_fixed);
  22.  }
  23.  //替换cdn路径
  24.  function static_emoji_url() {
  25.  return get_bloginfo(‘template_directory’).’/72×72/’;
  26.  }
  27.  //让文章内容和评论支持 emoji 并禁用 emoji 加载的乱七八糟的脚本
  28.  function reset_emojis() {
  29.  remove_action(‘wp_head’, ‘print_emoji_detection_script’, 7);
  30.  remove_action(‘admin_print_scripts’, ‘print_emoji_detection_script’);
  31.  remove_action(‘wp_print_styles’, ‘print_emoji_styles’);
  32.  remove_action(‘admin_print_styles’, ‘print_emoji_styles’);
  33.  add_filter(‘the_content’, ‘wp_staticize_emoji’);
  34.  add_filter(‘comment_text’, ‘wp_staticize_emoji’,50); //在转换为表情后再转为静态图片
  35.  smilies_reset();
  36.  add_filter(’emoji_url’, ‘static_emoji_url’);
  37.  }
  38.  add_action(‘init’, ‘reset_emojis’);
  39.  //输出表情
  40.  function fa_get_wpsmiliestrans(){
  41.  global $wpsmiliestrans;
  42.  $wpsmilies = array_unique($wpsmiliestrans);
  43.  foreach($wpsmilies as $alt => $src_path){
  44.  $emoji = str_replace(array(‘&#x’, ‘;’), , wp_encode_emoji($src_path));
  45.  $output .= ‘<a class=“add-smily” data-smilies=“‘.$alt.'”><img class=“wp-smiley” src=“‘.get_bloginfo(‘template_directory’).’/72×72/’. $emoji .’png” /></a>’;
  46.  }
  47.  return $output;
  48.  }

好了,我们也可以将国外表情包直接启用在本地的,而我这里直接将其给切除掉了,这样,一切变得安静多了。

内容出处:,

声明:本网站所收集的部分公开资料来源于互联网,转载的目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。如果您发现网站上有侵犯您的知识产权的作品,请与我们取得联系,我们会及时修改或删除。文章链接:http://www.yixao.com/procedure/1928.html

发表评论

登录后才能评论