WooCommerce:删除单个产品的面包屑不起作用
WooCommerce: Removing breadcrumbs for single products not working
我想删除除产品类别和单一产品之外的所有页面的面包屑。不幸的是,我的条件语句不起作用。谁能告诉我我做错了什么?
我尝试通过条件句回显一些文本,一切正常。也可以在没有任何条件的情况下删除面包屑。
add_action( 'init', 'wc_remove_storefront_breadcrumbs');
function wc_remove_storefront_breadcrumbs() {
if ( !is_product() || !is_product_category() ){
remove_action( 'storefront_before_content', 'woocommerce_breadcrumb', 10 );
}
}
通过这段代码,面包屑随处可见。
我更改了 add_action 中的标签和优先级,现在可以正常工作了。
add_action( 'storefront_before_content', 'wc_remove_storefront_breadcrumbs', 0);
function wc_remove_storefront_breadcrumbs() {
if( !is_product() ) {
remove_action( 'storefront_before_content', 'woocommerce_breadcrumb', 10 );
}
}
我想删除除产品类别和单一产品之外的所有页面的面包屑。不幸的是,我的条件语句不起作用。谁能告诉我我做错了什么?
我尝试通过条件句回显一些文本,一切正常。也可以在没有任何条件的情况下删除面包屑。
add_action( 'init', 'wc_remove_storefront_breadcrumbs');
function wc_remove_storefront_breadcrumbs() {
if ( !is_product() || !is_product_category() ){
remove_action( 'storefront_before_content', 'woocommerce_breadcrumb', 10 );
}
}
通过这段代码,面包屑随处可见。
我更改了 add_action 中的标签和优先级,现在可以正常工作了。
add_action( 'storefront_before_content', 'wc_remove_storefront_breadcrumbs', 0);
function wc_remove_storefront_breadcrumbs() {
if( !is_product() ) {
remove_action( 'storefront_before_content', 'woocommerce_breadcrumb', 10 );
}
}