Created
July 3, 2015 08:42
-
-
Save woogist/56f8db0f837321b59fc0 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_filter( 'wc_photography_shop_loop_image_html', 'wc_photography_loop_image_link' ); | |
function wc_photography_loop_image_link( $html ) { | |
global $product; | |
return preg_replace( '/href="([^"]*)"/', sprintf( 'href="%s"', get_permalink( $product->id ) ), $html ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment