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.

1 Answer
1

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/';
} );

Leave a Comment