Skip to content
Advertisement

How to display html tag with css using esc_html?

I am editing the woocommerce orders.php template and ran into a problem. The template shows to user the orders he has placed. There are now several variables that I think need to be coded for security, such as $date_created or $view_order which contains the order link. So I’m trying to add esc_html to these and other variables but when I do it displays plain text on screen and not html tag with its css.

Is there a way to use esc_html and keep the output clean so it displays html and css tags normally? Sorry but I’m new to all this, I’m trying to learn step by step, I hope someone can show me a possible way / solution. I appreciate any help, thanks.

Basically I use this to display variables and everything works fine, the variable is displayed with its css: enter image description here

JavaScript

If I try to do this, the variables is displayed without its css style enter image description here

JavaScript

Another example, if I have $example = esc_html( '<a href="http://www.example.com/">A link</a>' ); this displayed as <a href="http://www.example.com/">A link</a> instead of A link. Is there any way to solve this problem?

This is my orders.php template: I don’t think it matters, but I have entered the complete template.

JavaScript

Advertisement

Answer

You can use wp_kses_post, it filters text content and strips out disallowed HTML.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement