Utoljára aktív 1713289147

custom-rewrite-qrh.php Eredeti
1// force URL rewrite for QRh
2function custom_rewrite_rule() {
3 // Adding a rewrite rule that maps the new URL to the internal query for product-category/outlet.
4 add_rewrite_rule('^tienda/outlet/?$', 'index.php?product_cat=outlet', 'top');
5}
6add_action('init', 'custom_rewrite_rule');
7
8function custom_rewrite_tag() {
9 // Adding the custom query var to ensure WordPress recognizes it.
10 add_rewrite_tag('%product_cat%', '([^&]+)');
11}
12add_action('init', 'custom_rewrite_tag');
13