02/25/2015 at 2:12 pm
#320730
Keymaster
@ Simon
Your server is setup to display PHP warning and notices. It is best practice to either disable such messages and log them to a file that is not web accessible on production servers. Basically if you’re not developing a site, the message should be off. The like_esc message message you’re seeing is for devs, letting us know that the function has been deprecated and we should plan on removing its use. Right now I need to maintain compatibility with WordPress 3.8 and newer so that function can not be removed since the function that replaced it is not available until WordPress 4.0 (or was it 4.1).
See this page on how to disable these messages:
http://aristeides.com/blog/wp-hide-php-errors/
That should fix it right up. Let me know.
