Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. add_action( 'woocommerce_after_shop_loop_item_title', 'lottie_new_badge', 40 );
  2.  
  3. function lottie_new_badge($badge) {
  4. global $product;
  5.  
  6. if (has_term ('new')) {
  7. echo '<p>New</p>';
  8. }
  9. return $badge;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement