我无法在WordPress前端产品页面中正确显示产品说明及其在编辑器中给出的样式。
以下是我用来显示描述的代码。它工作正常,但它没有采取的风格。
<?php echo stripslashes_deep($row_pro->proDescription); ?>
答案 0 :(得分:0)
最后我找到了解决方案。以下是帮助我解决的代码。
<?php $desc = stripslashes_deep($row_pro->proDescription);
$content = apply_filters('the_content', $desc);
echo $content; ?>