Skip to content

Instantly share code, notes, and snippets.

@WProbot
Created June 19, 2021 21:00
Show Gist options
  • Save WProbot/47849c5f6e77589ed53e0330c1ad06cd to your computer and use it in GitHub Desktop.
Save WProbot/47849c5f6e77589ed53e0330c1ad06cd to your computer and use it in GitHub Desktop.
function remove_category( $string, $type ) {
if ( $type != 'single' && $type == 'category' && ( strpos( $string, 'category' ) !== false ) ) {
$url_without_category = str_replace( "/category/", "/", $string );
return trailingslashit( $url_without_category );
}
return $string;
}
add_filter( 'user_trailingslashit', 'remove_category', 100, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment