Last active
July 5, 2019 05:59
-
-
Save imran-khan1/44a121a89fdb3590ce46b349b36ed694 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Reorder woocommerce product data tabs | |
| */ | |
| add_filter( 'woocommerce_product_tabs', 'woo_reorder_product_data_tabs', 98 ); | |
| function woo_reorder_product_data_tabs( $tabs ) { | |
| $tabs['reviews']['priority'] = 5; // Reviews first | |
| $tabs['description']['priority'] = 10; // Description second | |
| $tabs['additional_information']['priority'] = 15; // Additional information third | |
| return $tabs; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment