Skip to content

Instantly share code, notes, and snippets.

@woogist
Created July 3, 2015 08:42
Show Gist options
  • Save woogist/56f8db0f837321b59fc0 to your computer and use it in GitHub Desktop.
Save woogist/56f8db0f837321b59fc0 to your computer and use it in GitHub Desktop.
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