Guest User

Untitled

a guest
Feb 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. add_action( 'init', 'listing_search_url' );
  2. function listing_search_url()
  3. {
  4. add_rewrite_tag('%type%', '([^&]+)');
  5. add_rewrite_tag('%search_location%', '([^&]+)');
  6. add_rewrite_rule(
  7. '^custom(/([^/]+))?/(/([^/]+))?/?',
  8. 'index.php?page_id=23&type=$matches[2]&search_location=$matches[4]',
  9. 'top'
  10. );
  11. flush_rewrite_rules();
  12. }
Add Comment
Please, Sign In to add comment