Skip to content

Instantly share code, notes, and snippets.

@zarankumar
Created October 6, 2015 11:03
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 zarankumar/3346129d90f935e759a0 to your computer and use it in GitHub Desktop.
Save zarankumar/3346129d90f935e759a0 to your computer and use it in GitHub Desktop.
add_action( 'woocommerce_product_write_panel_tabs', 'woo_add_custom_admin_product_tab' );
function woo_add_custom_admin_product_tab() {
?>
<li class="custom_tab"><a href="#custom_tab_data"><?php _e('Price Settings', 'woocommerce'); ?></a></li>
<?php
}
add_action( 'woocommerce_product_options_general_product_data', 'wdm_add_custom_settings' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment