Guest User

Untitled

a guest
Oct 16th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function modify_shop_product_image ( $img, $product, $size, $attr, $placeholder ) {
  2. $alt_tag = 'alt=';
  3. $pos = stripos( $img, 'alt=' ) + strlen( $alt_tag ) + 1;
  4. return substr_replace($img, $product->get_name(), $pos, 0);
  5. }
  6.  
  7. add_action( 'woocommerce_product_get_image', 'modify_shop_product_image', 10, 5 );
Add Comment
Please, Sign In to add comment