E
E
Eugene2017-04-24 13:06:17
WordPress
Eugene, 2017-04-24 13:06:17

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;
  }

I generate a sitemap with the Google XML Sitemaps plugin, when viewing a product category map, the changed categories are displayed with relative links /product_cat/myproductcat/ how to fix the problem? it is necessary that in the sitemap ulr be absolute

Answer the question

In order to leave comments, you need to log in

1 answer(s)
W
WordPress WooCommerce, 2017-04-24
@maxxannik

Try replacing:
with
return home_url( $termlink );

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question