Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created November 20, 2020 15:54
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 mgibbs189/78431652aa800f4f53de7df61ec7993c to your computer and use it in GitHub Desktop.
Save mgibbs189/78431652aa800f4f53de7df61ec7993c to your computer and use it in GitHub Desktop.
<?php
// Add to your (child) theme's functions.php
add_filter( 'term_link', function( $termlink, $term, $taxonomy ) {
if ( 'portfolio_skills' == $taxonomy ) { /* TODO: this taxonomy name may need to change? */
$termlink = '/wineries-2/?_wine_types=' . $term->slug;
}
return $termlink;
}, 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment