admin管理员组

文章数量:1290951

add_filter( 'woocommerce_product_tabs', 'wpb_new_product_tab' );
function wpb_new_product_tab( $tabs ) {
    // Add the new tab
    $tabs['test_tab'] = array(
        'title'       => __( 'Size Chart', 'text-domain' ),
        'priority'    => 50,
        'callback'    => 'wpb_new_product_tab_content'
    );
    return $tabs;
}

function wpb_new_product_tab_content() {
    // The new tab content
    echo 'Size Chart';
    echo '[table id=2 responsive=collapse responsive_breakpoint="phone" /]
" /.';          
}

本文标签: shortcode in snippet plugin not work