• Resolved stuartcr

    (@stuartcr)


    Hi all,

    I would like to be able to display a product tag using PHP.

    (breaks my head that this question “how to display woocommerce product tags using php” in google gets me nowhere)

    sooo i’ve done this before with WordPress core,

    <?php    $tags = get_the_tags();
      if ($tags) {
    foreach( $tags as $tag ) {
     echo $tag->name;
            }
        }
    ?>

    but not with woocommerce? can anyone help?

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘How to display products TAGs withphp’ is closed to new replies.