gpt4 book ai didi

php - woocommerce 产品摘录说明(简短)

转载 作者:行者123 更新时间:2023-12-04 22:18:39 28 4
gpt4 key购买 nike

我要删除 wordpress html 格式在 woocommerce 产品简短描述中。添加 电话 到处标记。我知道如何在 wp 帖子和页面中做到这一点

remove_filter( 'the_excerpt', 'wpautop' );



但它不适用于 woocommerce 产品短说明

我正在尝试使用此代码

remove_filter( 'woocommerce_single_product_summary', 'wpautop' );



还是很感谢你!

最佳答案

你可以这样做...

function rei_woocommerce_short_description($the_excerpt) {

return wp_strip_all_tags($the_excerpt);
}
add_filter('woocommerce_short_description', 'rei_woocommerce_short_description',10, 1);

注:
  • wp_strip_all_tags将去除所有 HTML 标签,包括脚本和样式。
  • 如果要删除中断标记,则传递第二个参数 true <br/>还。

  •     return wp_strip_all_tags( $the_excerpt, true );

    关于php - woocommerce 产品摘录说明(简短),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34700299/

    28 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com