Wordpress" get_the_excerpt($ product_id);"返回HTML?

时间:2017-01-11 00:08:26

标签: php html wordpress

正如标题中所提到的,我的功能有问题:get_the_excerpt($ product_id);我希望返回HTML,但它会给我一些引号(""),因为你可以在那里看到:https://eshoes.com.au/product/carton-multi-test/

请点击第一个单选按钮,查看我想要到达的结果(html中的表格,而不是

标签..)

我试图从插件Composite Products挂钩代码的一部分,以使product_description已经显示在我的单选按钮下,而不点击它。

进行了一些研究,显然这是" the_excerpt"用

转换文本但不可能想出丢弃它的方法。

我的代码:

`$product_description = get_the_excerpt($product_id);
`<?php echo '<span class="radio_button_price price">' . $product_description . '</span>'; ?>

提前致谢!

1 个答案:

答案 0 :(得分:0)

我找到了使用复合产品插件中已构建的功能的解决方案。

在以下文件中:woocommerce-composite-products \ templates \ single-product \ component-option-radio-button.php 您可以在echo $ product_price_html旁边替换/添加(第42行);这一行:

            *echo apply_filters( 'woocommerce_composited_product_excerpt', wpautop( do_shortcode( wp_kses_post( $product_description ) ) ), $product_id, $component_id, $composite );*

直接完成工作,并在HTML中解释它,并处理&#34;标签&#34; &LT;&GT;

希望有所帮助:)