Guest User

Untitled

a guest
Dec 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. add_action( 'init', 'wpse26388_rewrites_init' );
  2. function wpse26388_rewrites_init(){
  3. add_rewrite_rule(
  4. 'properties/([0-9]+)/?$',
  5. 'deal.php?pagename=single-deal&property_id=$matches[1]',
  6. 'top' );
  7. }
  8.  
  9. add_filter( 'query_vars', 'wpse26388_query_vars' );
  10. function wpse26388_query_vars( $query_vars ){
  11. $query_vars[] = 'property_id';
  12. return $query_vars;
  13. }
Add Comment
Please, Sign In to add comment