Disable Emojis - Version 1.5.3

Version Description

  • Catering to new DNS prefetch URL in version 4.7 of core
Download this release

Release Info

Developer ryanhellyer
Plugin Icon wp plugin Disable Emojis
Version 1.5.3
Comparing to
See all releases

Code changes from version 1.5.2 to 1.5.3

Files changed (2) hide show
  1. disable-emojis.php +2 -2
  2. readme.txt +7 -4
disable-emojis.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Disable Emojis
4
  Plugin URI: https://geek.hellyer.kiwi/plugins/disable-emojis/
5
  Description: Disable Emojis
6
- Version: 1.5.2
7
  Author: Ryan Hellyer
8
  Author URI: https://geek.hellyer.kiwi/
9
  License: GPL2
@@ -68,7 +68,7 @@ function disable_emojis_tinymce( $plugins ) {
68
  function disable_emojis_remove_dns_prefetch( $urls, $relation_type ) {
69
  if ( 'dns-prefetch' == $relation_type ) {
70
  /** This filter is documented in wp-includes/formatting.php */
71
- $emoji_svg_url = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2/svg/' );
72
 
73
  $urls = array_diff( $urls, array( $emoji_svg_url ) );
74
  }
3
  Plugin Name: Disable Emojis
4
  Plugin URI: https://geek.hellyer.kiwi/plugins/disable-emojis/
5
  Description: Disable Emojis
6
+ Version: 1.5.3
7
  Author: Ryan Hellyer
8
  Author URI: https://geek.hellyer.kiwi/
9
  License: GPL2
68
  function disable_emojis_remove_dns_prefetch( $urls, $relation_type ) {
69
  if ( 'dns-prefetch' == $relation_type ) {
70
  /** This filter is documented in wp-includes/formatting.php */
71
+ $emoji_svg_url = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2.2.1/svg/' );
72
 
73
  $urls = array_diff( $urls, array( $emoji_svg_url ) );
74
  }
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: ryanhellyer
3
  Tags: emojis
4
  Donate link: https://geek.hellyer.kiwi/donate/
5
- Requires at least: 4.2
6
- Tested up to: 4.7
7
- Stable tag: 1.5.2
8
 
9
 
10
  This plugin disables the new WordPress emoji functionality.
@@ -15,7 +15,7 @@ This plugin disables the new WordPress emoji functionality.
15
  This plugin disables the new WordPress emoji functionality.
16
 
17
 
18
- Note: Emoticons will still work and emoji's will still work in browsers which have built in support for them. This plugin simply removes the extra code bloat used to add support for emoji's in older browswers.
19
 
20
 
21
  == Installation ==
@@ -31,6 +31,9 @@ Visit the <a href="https://geek.hellyer.kiwi/plugins/disable-emojis/">Disable Em
31
 
32
  == Changelog ==
33
 
 
 
 
34
  = 1.5.2 =
35
  * Improved documentation.
36
  * Removed redundant dns prefetching. Thanks to <a href="http://blog.milandinic.com/">Milan Dinic</a> for the pull request.
2
  Contributors: ryanhellyer
3
  Tags: emojis
4
  Donate link: https://geek.hellyer.kiwi/donate/
5
+ Requires at least: 4.8
6
+ Tested up to: 4.9
7
+ Stable tag: 1.5.3
8
 
9
 
10
  This plugin disables the new WordPress emoji functionality.
15
  This plugin disables the new WordPress emoji functionality.
16
 
17
 
18
+ Note: Emoticons will still work and emoji's will still work in browsers which have built in support for them. This plugin simply removes the extra code bloat used to add support for emoji's in older browsers.
19
 
20
 
21
  == Installation ==
31
 
32
  == Changelog ==
33
 
34
+ = 1.5.3 =
35
+ * Catering to new DNS prefetch URL in version 4.7 of core
36
+
37
  = 1.5.2 =
38
  * Improved documentation.
39
  * Removed redundant dns prefetching. Thanks to <a href="http://blog.milandinic.com/">Milan Dinic</a> for the pull request.