WordPress教程:禁用WooCommerce选项卡

经过 小朱笔记 | 3 月 17, 2019 | WordPress技巧 | 0条评论

禁用WooCommerce选项卡

/**
 * Remove product tabs
 *
 */
function woo_remove_product_tab($tabs) {
 
    unset( $tabs['description'] );              https:// Remove the description tab
    unset( $tabs['reviews'] );                  https:// Remove the reviews tab
    unset( $tabs['additional_information'] );   https:// Remove the additional information tab
 
    return $tabs;
 
}
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tab', 98);

在哪里添加此代码?

将PHP代码放在主题或子主题functions.php文件的底部。

0条评论

提交评论

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理