Disable Emojis - Version 1.7.2

Version Description

  • Subtle improvement to code cleanliness.
  • Improved documentation regarding GDPR issues.
Download this release

Release Info

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

Code changes from version 1.7.1 to 1.7.2

Files changed (2) hide show
  1. disable-emojis.php +3 -3
  2. readme.txt +11 -3
disable-emojis.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Disable Emojis (GDPR friendly)
4
  Plugin URI: https://geek.hellyer.kiwi/plugins/disable-emojis/
5
  Description: Disable Emojis (GDPR friendly)
6
- Version: 1.7.1
7
  Author: Ryan Hellyer
8
  Author URI: https://geek.hellyer.kiwi/
9
  License: GPL2
@@ -53,9 +53,9 @@ add_action( 'init', 'disable_emojis' );
53
  function disable_emojis_tinymce( $plugins ) {
54
  if ( is_array( $plugins ) ) {
55
  return array_diff( $plugins, array( 'wpemoji' ) );
56
- } else {
57
- return array();
58
  }
 
 
59
  }
60
 
61
  /**
3
  Plugin Name: Disable Emojis (GDPR friendly)
4
  Plugin URI: https://geek.hellyer.kiwi/plugins/disable-emojis/
5
  Description: Disable Emojis (GDPR friendly)
6
+ Version: 1.7.2
7
  Author: Ryan Hellyer
8
  Author URI: https://geek.hellyer.kiwi/
9
  License: GPL2
53
  function disable_emojis_tinymce( $plugins ) {
54
  if ( is_array( $plugins ) ) {
55
  return array_diff( $plugins, array( 'wpemoji' ) );
 
 
56
  }
57
+
58
+ return array();
59
  }
60
 
61
  /**
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Disable Emojis (GDPR friendly) ===
2
  Contributors: ryanhellyer
3
- Tags: emojis
4
  Donate link: https://geek.hellyer.kiwi/donate/
5
  Requires at least: 4.8
6
- Tested up to: 5.0
7
- Stable tag: 1.7.1
8
 
9
 
10
  This plugin disables the new WordPress emoji functionality. GDPR friendly.
@@ -17,6 +17,10 @@ This plugin disables the new WordPress emoji functionality. GDPR friendly.
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 ==
22
 
@@ -31,6 +35,10 @@ Visit the <a href="https://geek.hellyer.kiwi/plugins/disable-emojis/">Disable Em
31
 
32
  == Changelog ==
33
 
 
 
 
 
34
  = 1.7.1 =
35
  * Added GDPR friendly label on advice from Ipstenu.
36
 
1
  === Disable Emojis (GDPR friendly) ===
2
  Contributors: ryanhellyer
3
+ Tags: emojis, gdpr, disable
4
  Donate link: https://geek.hellyer.kiwi/donate/
5
  Requires at least: 4.8
6
+ Tested up to: 6.0
7
+ Stable tag: 1.7.2
8
 
9
 
10
  This plugin disables the new WordPress emoji functionality. GDPR friendly.
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
+ = GDPR compliancy =
21
+
22
+ This plugin does not do anything to make your site less GDPR compliant. It disables the DNS prefetching of emoji's within WordPress, which should ensure improved privacy. To determine if your site is GDPR compliant, please seek legal advice. I have done my best to ensure the plugin is 100% GDPR compliant, but I am not a lawyer so can not guarantee anything ;)
23
+
24
 
25
  == Installation ==
26
 
35
 
36
  == Changelog ==
37
 
38
+ = 1.7.2 =
39
+ * Subtle improvement to code cleanliness.
40
+ * Improved documentation regarding GDPR issues.
41
+
42
  = 1.7.1 =
43
  * Added GDPR friendly label on advice from Ipstenu.
44