Skip to content

Instantly share code, notes, and snippets.

@thiagotmendes
Created July 2, 2018 23:40
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 thiagotmendes/496fa585b2cc223bb96f50b7de17c026 to your computer and use it in GitHub Desktop.
Save thiagotmendes/496fa585b2cc223bb96f50b7de17c026 to your computer and use it in GitHub Desktop.
<?php
function ajusta_url_imovel($rules) {
$new_rules = array(
'imoveis/([^/]+)/([^/]+)/?$' => 'index.php?post_type=$matches[1]&$matches[1]=$matches[2]',
);
$rules = array_merge($new_rules,$rules);
exit;
return $rules;
}
add_filter('rewrite_rules_array', 'ajusta_url_imovel');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment