Can i change wordpress emoji src from http://s.w.org/ to my site?

Can I change WordPress emoji src from http://s.w.org/ to my site?

I just want to replace all emoji links from http://s.w.org/ to my site URL and I will use my own emoji images.

Topic emoji php Wordpress

Category Web


Yes, you can use the emoji_url filter. Note there are a few other filters available as well.

A simple example would be

add_filter( 'emoji_url', function( $url ) {
    return 'https://www.myowndomain.com/emoji/72x72/';
} );

About

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