Skip to content

Instantly share code, notes, and snippets.

@delias
Forked from educartoons/wordpress_rewrite
Created November 7, 2018 04:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delias/9dd9e872c15803fecee1a25cf407ecb0 to your computer and use it in GitHub Desktop.
Save delias/9dd9e872c15803fecee1a25cf407ecb0 to your computer and use it in GitHub Desktop.
function chaplains_init() {
global $wp,$wp_rewrite;
$wp_rewrite->add_rule('chaplains/([0-9]{4})/?$',
'index.php?pagename=mypage&id=$matches[1]', 'top');
// $wp_rewrite->flush_rules(false);
}
add_action('init','chaplains_init');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment