我正在尝试在WooCommerce文章的排序说明中创建自动文本,并将产品的价格放在此消息中。
例如: "购买此产品即可获得(价格)奖励。"
我可以将此产品的品牌也放在此邮件中吗?
例如: "由genericshop"
出售代码:
add_filter( 'woocommerce_short_description', 'single_product_short_description', 10, 1 );
function single_product_short_description( $post_excerpt )
{
global $product;
if ( is_single( $product->id ) )
$post_excerpt = '<div class="product-message"><p>' . __( "Article only
available in the store.", "woocommerce" ) . '</p></div>' . $post_excerpt;
return $post_excerpt;
}