#emoji #emoticon #smiley #smilies
Provides an instant overview of your shop's current customers and the contents of their carts.
Be default, written smilies are automatically converted to their image counterpart in WordPress. So typing a “:” and a “)” next to each other in a post or page’s content area results in displaying an image of a yellow smiley face when viewing the post. Super annoying in most cases.
Add this to your theme’s functions.php to disable this functionality:
add_filter( 'option_use_smilies', '__return_false' );
Posted by Berend on
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>
Hello!
can I make the opposite happen if I just paste the following code in functions.php
add_filter( ‘option_use_smilies’, ‘__return_false’ );
Yes, that snippet would turn the use of smiley images off.