Skip to content

Instantly share code, notes, and snippets.

@RadGH
Created July 22, 2015 06:49
Show Gist options
  • Save RadGH/7c6b0f845e2f591a3c5e to your computer and use it in GitHub Desktop.
Save RadGH/7c6b0f845e2f591a3c5e to your computer and use it in GitHub Desktop.
Woocommerce - Sortable custom taxonomy
<?php
// This is so easy, it's embarassing that I took 20 minutes to find it.
// "Catalog" is a custom taxonomy.
function make_catalog_sortable( $sortables ) {
$sortables[] = 'catalog';
return $sortables;
}
add_filter( 'woocommerce_sortable_taxonomies', 'make_catalog_sortable' );
@WebMatPro
Copy link

great man, so thanks ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment