Skip to content

Instantly share code, notes, and snippets.

@tribulant
Created August 5, 2014 12:54
Show Gist options
  • Save tribulant/6ad49da21ea9d153ab43 to your computer and use it in GitHub Desktop.
Save tribulant/6ad49da21ea9d153ab43 to your computer and use it in GitHub Desktop.
checkout_image_attributes
<?php
function image_attributes($attributes, $image, $width, $height, $class) {
$attributes['data-zoom-image'] = $attributes['src'];
return $attributes;
}
add_filter('checkout_image_attributes', 'image_attributes', 10, 5);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment