the_toolman Posted October 25, 2020 Share Posted October 25, 2020 Hi there, I am trying to wrap some content in a div, but when I render it, it is outputting the actual HTML. This is the line I have: add_filter( 'woocommerce_product_description_heading', 'rename_product_description_heading', 10, 1 ); function rename_product_description_heading( $heading ) { return __( '<div class="myclass">Additional Information</div>', 'woocommerce' ); } which is outputting: <div class="myclass">Additional Information</div> rather than wrapping it in the div. Can anyone help me with wrapping the "Additional Information" text in a div? Thank you :) Quote Link to comment https://forums.phpfreaks.com/topic/311642-echoing-html-tags-within-a-return-line/ Share on other sites More sharing options...
requinix Posted October 25, 2020 Share Posted October 25, 2020 Consider that __ is for translating text, not HTML. Quote Link to comment https://forums.phpfreaks.com/topic/311642-echoing-html-tags-within-a-return-line/#findComment-1582077 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.