:)
and :D
to images on any WordPress installation. This plugin also prevents changing real emojis to Twemoji (Twitter) images. It achieves this by removing several default WordPress scripts.
You can find the option at "Settings > Writing" (/wp-admin/options-writing.php
).
This plugin does not prevent real emojis (inserted via an emoji keyboard) from being stored and outputted on your website.
Emoji conversion enabled by default
I wrote this plugin with a WordPress.com-like environment in mind, giving users an option without overriding standard WordPress behavior.
You can change this behavior via filter cw_emoji_overrides
. Refer to the code for instructions.
Does more than "Disable Emojis"
Emoji Settings also fixes Character Encoding issues on sites originally installed with WP 4.2 or lower. And this plugin correctly removes the conversion of emojis in the admin area, for example, from post titles.
Translating
You can contribute by translating Emoji Settings via the sidebar on this page.
wp-admin/options-writing.php
.You can implement this filter to achieve that:
add_filter( 'cw_emoji_overrides', function( $overrides ) { $overrides['default'] = '0'; // Set disabled by default. return $overrides; } );
cw_emoji_overrides
, accepts array [ 'default' => string 1|0, 'force_support' => ?bool ]
.the_emoji_options
.the_emoji_options
filter was incorrectly used, a PHP notice would be cast on every page load.the_emoji_options
.