Convert emoticons like :-) and :-P to graphics on display

Does anybody know what happened to the section in Wordpress went to:

Settings > Writing > Formating: Convert emoticons like :-) and :-P to graphics on display

I remember it used to be there regardless of whatever theme I was using. I can't find an answer on any forums either.

Is there a script or something i can paste into functions.php to make it show up again?

Topic emoji Wordpress

Category Web


I'm answering this old question because I didn't find anything better.

WordPress 5.9 wp-admin\options.php line 165 checks database version (when WP was originally installed) against a number to show or not those options.

if ( get_site_option( 'initial_db_version' ) < 32453 ) {
$allowed_options['writing'][] = 'use_smilies';
$allowed_options['writing'][] = 'use_balanceTags';
}

Not actually a solution, but maybe it's useful to understand why those options are missing, my initial guess is that those are not needed when the database already support emojis natively (utf8mb4).

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.