php - woocommerce: removing link on get_categories and get_tags -
i have woocommerce outputting get_categories , get_tags in example below, need them text only. @ present, outputs text link category / tag. can link component removed?
<?php echo $child_product['product']->get_categories(); ?> <?php echo $child_product['product']->get_tags(); ?>
thank you.
in case else looking solution this...
<?php echo strip_tags ($child_product['product']->get_categories()); ?>
Comments
Post a Comment