Answer the question
In order to leave comments, you need to log in
How to properly use term_link filter with sitemap.xml for WooCommerce product categories?
Good afternoon!
To change the url of a product category in WooCommerce, I use the following function:
add_filter( 'term_link', array( $this, 'replace_term_link' ), 9000, 2);
function replace_term_link ( $termlink, $term ) {
if( $term->taxonomy == 'product_cat' ) {
$permalinks = (array)get_option( 'product_cat_custom_permalinks' );
if( array_key_exists( (int)$term->term_id, $permalinks ) )
$termlink = empty( $permalinks[$term->term_id] ) ? $termlink : $permalinks[$term->term_id];
}
return $termlink;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question