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 wp-seopress/688428138720cfb3d95687d45c2e89aa to your computer and use it in GitHub Desktop.
Save wp-seopress/688428138720cfb3d95687d45c2e89aa to your computer and use it in GitHub Desktop.
Filter product category slug used in HTML sitemap
add_filter('seopress_sitemaps_html_product_cat_slug', 'sp_sitemaps_html_product_cat_slug');
function sp_sitemaps_html_product_cat_slug($product_cat_slug) {
$product_cat_slug = 'product_cat'; //default
return $product_cat_slug;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment