我正在尝试在单一产品页面的Woocommerce中围绕价格和购物车挂钩添加DIV。
content-single-page.php文件如下所示:
<?php
/**
* woocommerce_single_product_summary hook.
*
* @hooked woocommerce_template_single_title - 5
* @hooked woocommerce_template_single_rating - 10
* @hooked woocommerce_template_single_price - 10
* @hooked woocommerce_template_single_excerpt - 20
* @hooked woocommerce_template_single_add_to_cart - 30
* @hooked woocommerce_template_single_meta - 40
* @hooked woocommerce_template_single_sharing - 50
*/
do_action( 'woocommerce_single_product_summary' );
?>
我希望在这些钩子周围添加一个DIV:
hooked woocommerce_template_single_price - 10
woocommerce_template_single_add_to_cart - 30
答案 0 :(得分:7)
除了数字之外,它们是钩子函数的优先级,它只是将您自己的函数与正确的优先级挂钩:
add_action('woocommerce_single_product_summary', 'hooks_open_div', 7);
function hooks_open_div() {
echo '<div>';
}
add_action('woocommerce_single_product_summary', 'hooks_close_div', 33);
function hooks_close_div() {
echo '</div>';
}
希望它有所帮助!