Skip to content

Instantly share code, notes, and snippets.

@aliciaiceland
Created December 28, 2017 09:47
Show Gist options
  • Save aliciaiceland/087ea5eaad3003141ec4769ba3497631 to your computer and use it in GitHub Desktop.
Save aliciaiceland/087ea5eaad3003141ec4769ba3497631 to your computer and use it in GitHub Desktop.
Add to product details page
add_filter('woocommerce_product_tabs', 'add_my_tab');
function add_my_tab($tabs){
$tabs['details_tab'] = array(
'title' => 'New Tab',
'priority' => 1,
'callback' => 'tab_content',
);
return $tabs;
}
function tab_content(){
global $product;
echo $product->get_description();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment