Skip to content

Instantly share code, notes, and snippets.

@hwkdev
Created April 17, 2018 18:09
Show Gist options
  • Select an option

  • Save hwkdev/b5b56a6d15e9b53373218b4a2062a932 to your computer and use it in GitHub Desktop.

Select an option

Save hwkdev/b5b56a6d15e9b53373218b4a2062a932 to your computer and use it in GitHub Desktop.
<?php
add_action('init', 'hwk_add_rewrite_rule');
function hwk_add_rewrite_rule(){
add_rewrite_tag('%page_filter%', '([^&]+)');
add_rewrite_rule('^contact/([^/]*)/?', 'index.php?pagename=contact&page_filter=$matches[1]', 'top');
}
// example.com/contact/commercial
// page-contact.php:
// get_query_var('page_filter');
// Result: 'commercial';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment