Created
September 19, 2014 07:00
-
-
Save SirDarcanos/2537e52cb10feeebd639 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'woocommerce_product_thumbnails'. 'your_custom_function' ); | |
function your_custom_function() { | |
?> | |
<img src="http://domain.com/image.jpg" title="Your title" alt="Your alt" /> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment