wc_fix_product_attachment_link()
Prevent product attachment links from breaking when using complex rewrite structures.
No Hooks.
Returns
String.
Usage
wc_fix_product_attachment_link( $link, $post_id );
- $link(string) (required)
- Link.
- $post_id(int) (required)
- Post ID.
wc_fix_product_attachment_link() wc fix product attachment link code WC 10.7.0
function wc_fix_product_attachment_link( $link, $post_id ) {
$parent_type = get_post_type( wp_get_post_parent_id( $post_id ) );
if ( 'product' === $parent_type || 'product_variation' === $parent_type ) {
$link = home_url( '/?attachment_id=' . $post_id );
}
return $link;
}