Advertisement
secumbu

Add Woocommerce Tab

Feb 22nd, 2022
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php
  2.  
  3. // 1) Add woocommerce tab
  4. add_filter( 'woocommerce_product_tabs', 'woo_nutrition_tab' );
  5.  
  6. function woo_nutrition_tab( $tabs ) {
  7.    
  8.     // Adds the new tab
  9.     $tabs['nutrition_tab'] = array(
  10.         'title'     => __( 'Nutrition Tab', 'woonutrition' ),
  11.         'priority'  => 50,
  12.         'callback'  => 'woo_nutrition_tab_content'
  13.     );
  14.    
  15.     return $tabs;
  16. }
  17.  
  18. // 2) Add woocommerce Nutrition Tab Content
  19. function woo_nutrition_tab_content() {
  20.     return '<div class="my-tab">My Tab Content</div>';
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement