tascam424 Posted August 3, 2015 Share Posted August 3, 2015 Hi guys, i'm hoping someone can point me in the right direction here. I'm importing products into WooCommerce using WP All Import through a XML feed. I need a way to get certain data from the category field, which looks like this .. <range category='Cars'>Cars </range><range category='Vans'>Vans </range><range category='Lorries'>Lorries </range> I need to somehow convert this to Cars, Vans, Lorries I'm not really sure how to approach this, any help would be greatly appreciated. Quote Link to comment Share on other sites More sharing options...
surajkumardotin Posted August 20, 2015 Share Posted August 20, 2015 simple use php built-in function string function "htmlspecialchars_decode" and then "strip_tags" like the following.. strip_tags(htmlspecialchars_decode("your string")); Quote Link to comment 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.