1

这是否可以为所有产品页面添加 Woocommerce 产品默认描述。那应该是图像或注释文本。我希望它会放在描述文本的上方或底部。

提前致谢

4

1 回答 1

1

你可以使用像这样的钩子

// define the woocommerce_single_product_summary callback function
function my_custom_action() { 
    echo '<p>This is my custom action function</p>';
};     
add_action( 'woocommerce_single_product_summary', 'my_custom_action', 15 );

或 woocommerce_after_single_product_summary

// define the woocommerce_after_single_product_summary callback 
function action_woocommerce_after_single_product_summary( $evolve_woocommerce_after_single_product_summary, $int ) { 
    // make action magic happen here... 
}; 

// add the action 
add_action( 'woocommerce_after_single_product_summary', 'action_woocommerce_after_single_product_summary', 10, 2 );  

或 woocommerce_before_single_product_summary

// define the woocommerce_before_single_product_summary callback 
function action_woocommerce_before_single_product_summary( $woocommerce_show_product_sale_flash, $int ) { 
    // make action magic happen here... 
}; 

// add the action 
add_action( 'woocommerce_before_single_product_summary', 'action_woocommerce_before_single_product_summary', 10, 2 );

或者您也可以直接更改 woo-commerce 文件。

于 2018-05-21T12:54:18.550 回答