csmit195

Felipe Code Fix #1

Mar 28th, 2016
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. function custom_rewrite_tag() {
  2.     add_rewrite_tag('%restaurant_type%', '([^&]+)');
  3.     add_rewrite_tag('%hotel_type%', '([^&]+)');
  4.     add_rewrite_rule("^restaurants/([^/]*)/?", "index.php?pagename=page-restaurant&restaurant_type=$matches[1]", 'top');
  5.     add_rewrite_rule("^hotels/([^/]*)/?", "index.php?pagename=page-hotels&hotel_type=$matches[1]", 'top');
  6. }
  7. add_action('init', 'custom_rewrite', 10, 0);
Advertisement
Add Comment
Please, Sign In to add comment