Change Emoji Appearance

The WP core reference lists the hooks and functions related to emoji. Here are the hooks you use to point to alternate versions of emoji.

Convert emoji to images

To have your emoji characters displayed correctly, your html document MUST HAVE this meta in the header: <meta charset=”UTF-8″> To insert emoji character into your content, you can ether copy/paste it, or use its numerical code. This will be a code for a hamburger: &#x1F354; resulting this: 🍔. Update It looks like your wp_posts table’s … Read more

How do I make WordPress to display apple emoji?

Copying my answer to a similar question from the .org forums: You can’t force WordPress to use iOS emoji for anyone but iOS (or Mac) users. Emoji are just characters, like any other letter, and how they’re displayed is determined by the operating system. Each operating system has its own graphics for the emoji, and … Read more

How to disable emoji on specific page?

You’ll need to adjust your hook so it runs on wp, not init so that you can query what page you’re currently on. The code below gives you some examples of determining if you’re on the page(s) in questions. function disable_emoji_feature() { if ( is_page( 123 ) || is_page(‘the-page-slug’ ) || is_page( array( 1, 2, … Read more