Last active
August 4, 2022 11:41
-
-
Save tdmrhn/72240bb064a4417dc986262d4cb7572c to your computer and use it in GitHub Desktop.
Blocksy Add Product Tab with Content Block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'woocommerce_product_tabs', function ( $tabs ) { | |
$tabs['my_tab'] = array( | |
'title' => __( 'Blocksy Tab', 'woocommerce' ), | |
'priority' => 20, | |
'callback' => function() { echo do_shortcode( '[blocksy-content-block id="5870"]' ); } | |
); | |
return $tabs; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment