Skip to content

Instantly share code, notes, and snippets.

@taciara
Created July 19, 2019 18:02
Show Gist options
  • Select an option

  • Save taciara/70a2e28f146fb57c77a51bf1f9c77474 to your computer and use it in GitHub Desktop.

Select an option

Save taciara/70a2e28f146fb57c77a51bf1f9c77474 to your computer and use it in GitHub Desktop.
Remover categoria da URL
//RETIRAR O /CATEGORY DA URL
add_filter('user_trailingslashit', 'remcat_function');
function remcat_function($link) {
return str_replace("/category/", "/", $link);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment