Skip to content

Instantly share code, notes, and snippets.

@khikrama
Forked from woogists/wc-custom-tab.php
Created July 7, 2019 21:05
Show Gist options
  • Save khikrama/4792fea24c008e7c367282d6b9af1172 to your computer and use it in GitHub Desktop.
Save khikrama/4792fea24c008e7c367282d6b9af1172 to your computer and use it in GitHub Desktop.
[Frontend Snippets][Editing product data tabs] Customize a tab
/**
* Customize product data tabs
*/
add_filter( 'woocommerce_product_tabs', 'woo_custom_description_tab', 98 );
function woo_custom_description_tab( $tabs ) {
$tabs['description']['callback'] = 'woo_custom_description_tab_content'; // Custom description callback
return $tabs;
}
function woo_custom_description_tab_content() {
echo '<h2>Custom Description</h2>';
echo '<p>Here\'s a custom description</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment