wordpress woocommerce简码

问题描述 投票:0回答:1

当我们请求此短代码时,我从此函数中得到一个错误

function salex_func( $atts ){
   global $product;
if($product->is_on_sale()){
        echo '<span class="onsale soldout">';
    echo __( 'SALE!!!!', 'hello');
    echo '</span>';
}   
}
add_shortcode('saletex', 'salex_func');
wordpress woocommerce shortcode
1个回答
0
投票

您无法回显简码输出。您必须退还它。

© www.soinside.com 2019 - 2024. All rights reserved.