Hello,
WordPress default smiles: allow to download new smiles or delete default Smiles
Thank you ??
So changing the code like this fixes this:
private function __construct() {
add_filter( 'emoji_url', array( &$this, 'emoji_url' ), 10, 2 );
add_filter( 'emoji_svg_url', array( &$this, 'emoji_svg_url' ), 10, 2 );
}
function emoji_url( $emoji_url ) {
return plugins_url( '72x72/', __FILE__ );
}
function emoji_svg_url( $emoji_svg_url ) {
return plugins_url( 'svg/', __FILE__ );
}
]]>
Hi! If I understood well, this plugin allow to provide self hosted emojis to our readers, right?
But, what will happen if I use it in the meta-titles via Yoast SEO? Will Google be able to use them anyway or they will just map the used code to their own and supported ones?
I suppose the second one will happen. Can you confirm?
If so, do you what Emojis does Google support for titles?
Thanks in advance