Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vovadocent/eb452907e0cab1eb8313af2da2a9ff32 to your computer and use it in GitHub Desktop.
Save vovadocent/eb452907e0cab1eb8313af2da2a9ff32 to your computer and use it in GitHub Desktop.
Reorder Woocommerce Attribute Taxonomies
<?php
// reorder woocommerce attribute taxonomies
function css_woocommerce_attribute_taxonomies( $taxonomies ) {
$out = array();
foreach($taxonomies as $t){
$out[$t->attribute_id] = $t;
}
ksort($out);
return $out;
};
add_filter( 'woocommerce_attribute_taxonomies', 'css_woocommerce_attribute_taxonomies' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment