如何创建新的Woocommerce产品标签?

时间:2016-08-19 10:57:41

标签: php wordpress tabs woocommerce

我需要创建一个名为Category and Tags

的新产品标签

你能不告诉我如何在不使用插件的情况下做到这一点?

预览:

enter image description here

1 个答案:

答案 0 :(得分:0)

将此代码添加到您的function.php文件中,它将创建另一个选项卡,现在您可以在该回调函数中执行任何操作。

add_filter( 'woocommerce_product_tabs', 'woo_cat_product_tab' );
function woo_cat_product_tab( $tabs ) {

    // Adds the new tab

    $tabs['tag_cat_tab'] = array(
        'title'     => __( 'Tag and Category', 'woocommerce' ),
        'priority'  => 50,
        'callback'  => 'woo_cat_product_tab_content'
    );

    return $tabs;

}
function woo_cat_product_tab_content() {

    // The new tab content
    global $product;
    $id = $product->id;
    //Your code

}

了解更多详情,请查看WooCommerce docs