wp-polylang-translate-rewrite-slugs icon indicating copy to clipboard operation
wp-polylang-translate-rewrite-slugs copied to clipboard

Filter extra rewrite rules, for archives

Open KLicheR opened this issue 10 years ago • 0 comments

Voir branche "filter_extra_rules"

Filtrer ceci:

["(en|pl)/produits/?$"]=>
  string(44) "index.php?lang=$matches[1]&post_type=product"
["produits/?$"]=>
  string(35) "index.php?lang=fr&post_type=product"
["(en|pl)/products/?$"]=>
  string(44) "index.php?lang=$matches[1]&post_type=product"
["products/?$"]=>
  string(35) "index.php?lang=fr&post_type=product"
["(en|pl)/prowdukts/?$"]=>
  string(44) "index.php?lang=$matches[1]&post_type=product"
["prowdukts/?$"]=>
  string(35) "index.php?lang=fr&post_type=product"

comme ça:

["produits/?$"]=>
  string(35) "index.php?lang=fr&post_type=product"
["(en)/products/?$"]=>
  string(44) "index.php?lang=$matches[1]&post_type=product"
["(pl)/prowdukts/?$"]=>
  string(44) "index.php?lang=$matches[1]&post_type=product"

KLicheR avatar Aug 07 '14 16:08 KLicheR