在 WooCommerce 中,我只想在存在特定的function
时才调用钩子。我已经用if(function_exits)
进行了设置,但这似乎不起作用。
function wbgoe_add_hr() {
?>
<hr class="divider">
<?php
}
if(function_exists('woocommerce_upsell_display')){
add_action('woocommerce_after_single_product_summary','wbgoe_add_hr', 11);
}
add_action('woocommerce_after_single_product_summary','wbgoe_add_hr', 16);