在我的产品模板上,我执行此操作:
<?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');
?>
我想要的是删除 woocommerce_template_single_title
钩子,所以在我的 function.php 文件中我写了此代码:
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_title', 1);
但它不起作用,我不知道如何。
感谢您的帮助
!编辑!
NeverMind我通过编写以下方式解决了它:
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_title', 5);
优先级必须匹配
作者在他的问题中添加了单线。正如@bugs建议的那样,这里是一个答案。
// Remove title hook Woocommerce
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_title', 5);