Advertisement
michaellevelup

Remove product image link

Jun 16th, 2022
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. function king_remove_product_image_link ( $html, $post_id ){
  2.  
  3.     return preg_replace( "!<(a|/a).*?>!", '', $html );
  4. }
  5.  
  6. add_filter( 'woocommerce_single_product_image_thumbnail_html', 'king_remove_product_image_link', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement