Skip to content

Instantly share code, notes, and snippets.

@psaikali
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save psaikali/d560ffdd1f500b5a20e3 to your computer and use it in GitHub Desktop.
Save psaikali/d560ffdd1f500b5a20e3 to your computer and use it in GitHub Desktop.
On enregistre un nouvel onglet ...
function msk_add_love_product_tab($tabs) {
$tabs['love_tab'] = array(
'title' => __('Popularity', 'msk'),
'priority' => 15,
'callback' => 'msk_add_love_product_tab_content'
);
return $tabs;
}
add_filter('woocommerce_product_tabs', 'msk_add_love_product_tab');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment