在WooCommerce中,我在下面使用此代码添加"相关产品"到自定义标签,并使其适用于在页面和帖子上使用短代码 remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);
/*
* Register custom tab
*/
function woo_custom_product_tab( $tabs ) {
$custom_tab = array(
'custom_tab' => array(
'title' => __('Custom Tab','woocommerce'),
'priority' => 9,
'callback' => 'woo_custom_product_tab_content'
)
);
return array_merge( $custom_tab, $tabs );
}
add_filter( 'woocommerce_product_tabs', 'woo_custom_product_tab' );
/*
* Place content in custom tab (related products in this sample)
*/
function woo_custom_product_tab_content() {
global $product;
$product->get_related();
}
的帖子。
我在functions.php中使用的代码正在运行:
{{1}}
现在问题是我在普通产品单页中得到一个空白标签。
如何才能使其在普通产品单页上运行?
由于
答案 0 :(得分:1)
要使其在单个产品页面上也能正常运行,您需要添加一些条件,并仅针对单个产品页面重复使用 woocommerce_related_products()
。
所以你的代码现在就是:
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);
/*
* Register custom tab
*/
add_filter( 'woocommerce_product_tabs', 'woo_custom_product_tab', 20, 1 );
function woo_custom_product_tab( $tabs ) {
$custom_tab = array(
'custom_tab' => array(
'title' => __('Custom Tab','woocommerce'),
'priority' => 9,
'callback' => 'woo_custom_product_tab_content'
)
);
return array_merge( $custom_tab, $tabs );
}
/*
* Place content in custom tab (related products in this sample)
*/
function woo_custom_product_tab_content() {
global $product;
if(!is_product())
$product->get_related();
else
woocommerce_related_products();
}
这应该适用于您的产品短代码在页面上张贴并在一侧发布,也适用于单个woocommerce普通产品页面。
代码进入活动子主题(或主题)的function.php文件。或者也可以在任何插件php文件中。