How to get WooCommerce Product Category Link by ID?
WooCommerce's product categories are a custom taxonomy called product_cat
. In a function I'm writing, I'm using get_categories
with the taxonomy
parameter set to product_cat
. Everything works fine and I can get the term id, the name, and even the slug. What I can't figure out is how to get the link to display. Apparently get_category_link
doesn't work with custom taxonomy and get_term_link
isn't working either, I get an error. Here's what I have:
$prod_cat_args = array(
'taxonomy' = 'product_cat', //woocommerce
'orderby' = 'name',
'empty' = 0
);
$woo_categories = get_categories( $prod_cat_args );
foreach ( $woo_categories as $woo_cat ) {
$woo_cat_id = $woo_cat-term_id; //category ID
$woo_cat_name = $woo_cat-name; //category name
$return .= 'a href="' . get_category_link( $woo_cat_id ) . '"' . $woo_cat_name . '/a';
}//end of $woo_categories foreach
Suggestions?
Topic woocommerce-offtopic link-category custom-taxonomy Wordpress
Category Web