Skip to content

Instantly share code, notes, and snippets.

@imran-khan1
Last active July 5, 2019 05:59
Show Gist options
  • Save imran-khan1/44a121a89fdb3590ce46b349b36ed694 to your computer and use it in GitHub Desktop.
Save imran-khan1/44a121a89fdb3590ce46b349b36ed694 to your computer and use it in GitHub Desktop.
<?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