Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. add_action( 'woocommerce_after_shop_loop_item_title', function () {
  2. if(is_product_category('t-shirts')) {
  3. $thumb = get_the_post_thumbnail( the_ID());
  4. if(is_string($thumb) ) {
  5. echo '<div class="imagewrapper">' . $thumb;
  6. }
  7. }
  8.  
  9. }, 9 );
  10. add_action( 'woocommerce_after_shop_loop_item_title', function () {
  11. if(is_product_category('t-shirts')) {
  12. $thumb = get_the_post_thumbnail( the_ID());
  13. if(is_string($thumb) ) {
  14. echo '</div>';
  15. }
  16. }
  17. }, 11 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement