Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Last active August 4, 2022 11:41
Show Gist options
  • Save tdmrhn/72240bb064a4417dc986262d4cb7572c to your computer and use it in GitHub Desktop.
Save tdmrhn/72240bb064a4417dc986262d4cb7572c to your computer and use it in GitHub Desktop.
Blocksy Add Product Tab with Content Block
<?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