How do I override the emoji url?
When you enable emojis, Wordpress includes code which converts the chars to the PNGs which it pulls from a CDN.
We would like to replace those with our own images.
According to formatting.php the function is here.
How do we override the emoj_url
so that we are pulling the PNGs from a folder of our choosing? Can the function being replaced (ie. is it pluggable?) I tried remove_all_filters()
and apply_filter()
with our own function, but it doesn't work.