maariaa
maariaa

Reputation: 179

Woocommerce short description keep html tags

I am trying to display the product short description on my front page. My problem is, that the html-tags, for example lists, are not displayed. The text comes without any html. On my single-product page everything is displayed fine. Is there a way to keep these tags?

I use this code:

get_short_description(); ?>

Upvotes: 1

Views: 2064

Answers (1)

Saeed Jamali
Saeed Jamali

Reputation: 1195

For the short description in wordpress, the_excerpt() function works perfectly!

try this:

<?php echo the_excerpt() ?>

Upvotes: 1

Related Questions