I want to call product category name
when i tried this code
$product->get_categories(),
it is calling categry name + link, can anyone help me to call only category name
I want to call product category name
when i tried this code
$product->get_categories(),
it is calling categry name + link, can anyone help me to call only category name
Just add the follows code snippet in your active theme's functions.php to achieve the above -
function modify_porduct_cat_link( $links ) {
if ( $links ) :
$only_names = array();
foreach ( $links as $link ) {
$only_names[] = preg_replace( '#<a.*?>([^>]*)</a>#i', '$1', $link );
}
$links = $only_names;
endif;
return $links;
}
add_filter( 'term_links-product_cat', 'modify_porduct_cat_link', 99 );