Created
April 30, 2020 18:51
-
-
Save TorbenL/58c6f7060ef2079d790b94235a546fdb to your computer and use it in GitHub Desktop.
Remove Wordpress Emojis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'init', function() { | |
remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); | |
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); | |
remove_action( 'wp_print_styles', 'print_emoji_styles' ); | |
remove_action( 'admin_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' ); | |
add_filter( 'tiny_mce_plugins', function($plugins) { | |
return is_array( $plugins )?array_diff( $plugins, [ 'wpemoji' ] ) : []; | |
}); | |
add_filter( 'wp_resource_hints', function($urls, $relation_type) { | |
if ($relation_type === 'dns-prefetch') { | |
$urls = array_diff( $urls, [apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2/svg/' )]); | |
} | |
return $urls; | |
}, 10, 2 ); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment