Could somebody help me to find how to solve Data Escaped problem? (WordPress)

Always use esc_url or esc_url_raw (database queries, redirects and HTTP requests) when sanitizing URLs:

https://codex.wordpress.org/Function_Reference/esc_url
https://codex.wordpress.org/Function_Reference/esc_url_raw

1 Like