Adding multiple tabs to WooCommerce single product pages

前端 未结 3 1996
暖寄归人
暖寄归人 2020-12-01 20:16

I am trying to add three custom tabs to WooCommerce. I have the code below and two of them show up but for some reason the attribute description tab does not show on the pag

3条回答
  •  星月不相逢
    2020-12-01 20:54

    function my_simple_custom_product_tab( $tabs ) {
    
        $tabs['my_custom_tab'] = array(
            'title'    => __( 'Custom Tab', 'textdomain' ),
            'callback' => 'my_simple_custom_tab_content',
            'priority' => 50,
        );
    
        return $tabs;
    
    }
    add_filter( 'woocommerce_product_tabs', 'my_simple_custom_product_tab' );
    
    /**
     * Function that displays output for the shipping tab.
     */
    function my_simple_custom_tab_content( $slug, $tab ) {
    
        ?>

    Tab Content

提交回复
热议问题