Created
February 19, 2023 12:11
-
-
Save pgroot91/deaf26fa7597a53e8ac66144982722eb to your computer and use it in GitHub Desktop.
lang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function custom_rewrite_rules(){ | |
global $langs; | |
//Array containing locale => pretty permalink key value pair | |
/* | |
$langs = array ( | |
'en_us' => 'en', | |
) | |
*/ | |
foreach($langs as $locale => $lang) { | |
add_rewrite_rule( | |
'^'.$lang.'/\/(.*)/?$', | |
'index.php?lang='.$locale, | |
'top' | |
); | |
} | |
} | |
add_action( 'init', 'custom_rewrite_rules' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment