Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function product_terms_by_cat() {
  2. $terms = get_terms (
  3. array (
  4. 'taxonomy' => 'product_tag',
  5. 'hide_empty' => false)
  6. );
  7. foreach ( $terms as $term ) {
  8. echo $term->name;
  9. }
  10. }
  11. add_shortcode('product_terms_by_cat', 'product_terms_by_cat');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement