Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/a942a252e080af30537dd329841eb279 to your computer and use it in GitHub Desktop.
Save plugin-republic/a942a252e080af30537dd329841eb279 to your computer and use it in GitHub Desktop.
<?php
/**
* Display global groups according to attribute or taxonomy
*/
function prefix_filter_global_categories_taxonomy( $args, $group_id, $group, $rule ) {
// Return the slug of the taxonomy you wish to use instead of product category
return 'pa_colour';
}
add_filter( 'pewc_filter_global_categories_taxonomy','prefix_filter_global_categories_taxonomy', 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment