Skip to content

Instantly share code, notes, and snippets.

@renrax
Forked from artikus11/functions.php
Created January 3, 2022 23:16
Show Gist options
  • Save renrax/8af11be5a208350b122f2e8d3add49f7 to your computer and use it in GitHub Desktop.
Save renrax/8af11be5a208350b122f2e8d3add49f7 to your computer and use it in GitHub Desktop.
/**
* Сортировка атрибутов в админке по алфавиту
*
* @param $attr
*
* @return array
*
* @testedwith WooCommerce 6.0
* @author Artem Abramovich
*/
function art_woocommerce_sorting_attributes_list( $attr ) {
return wp_list_sort( $attr, 'attribute_label', 'ASC' );
}
add_filter( 'woocommerce_attribute_taxonomies', 'art_woocommerce_sorting_attributes_list' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment