add rewrite rule for attachments. Closes #875.
This commit is contained in:
parent
c8033cef51
commit
eb532c342c
|
@ -780,6 +780,11 @@ class Woocommerce {
|
|||
)
|
||||
);
|
||||
|
||||
// Sort out attachment urls
|
||||
$attachment_base = get_option('woocommerce_prepend_shop_page_to_products') == 'yes' ? trailingslashit( $base_slug ) : trailingslashit( _x( 'product', 'slug', 'woocommerce' ) );
|
||||
|
||||
add_rewrite_rule( '^' . $attachment_base . '([^/]*)/([^/]*)/([^/]*)/?', 'index.php?attachment=$matches[3]', 'top' );
|
||||
|
||||
register_post_type( "product_variation",
|
||||
array(
|
||||
'labels' => array(
|
||||
|
|
Loading…
Reference in New Issue