我试图显示WooCommerce单个产品的描述,但循环没有显示正确的描述,而是重新开始显示图像、价格、添加到购物车等。
我一直在努力寻找答案,但没有找到任何结果。我使用了WooCommerce模板脚本并对其进行了编辑;the_excerpt()
将起作用,但不起作用the_content(
).
这是我当前使用的模板文件:https://github.com/woocommerce/woocommerce/blob/master/templates/single-product/tabs/description.php
the_content()
现在是问题所在。可能是我的问题还是什么?我有不同的方式查询我的产品index.php, 但是archive-product.php 与WooCommerce查询具有相同的。即使是在single-product.php 问题出在哪里?
我用这个front-page.php:s产品循环:
<div class="col-9 main-products">
<?php echo do_shortcode(\'[products paginate="true" limit="30" orderby="popularity"]\'); ?>
</div>
content-single-product.php,
archive-product.php 和
single-product.php 与WooCommerce模板相同。
它应该显示描述,而不是再次循环。没有错误消息。
我还使用了不同的主题,产品显示正确,所以我使用的任何插件都没有问题。