Skip to content

Instantly share code, notes, and snippets.

@sachithrrra
Created April 27, 2022 10:32
Show Gist options
  • Save sachithrrra/4ca1ab760cbc568c9c35a5417e1ba1d3 to your computer and use it in GitHub Desktop.
Save sachithrrra/4ca1ab760cbc568c9c35a5417e1ba1d3 to your computer and use it in GitHub Desktop.
Remove child categories from Wordpress permalink
/*
Remove child categories from Wordpress permalink (https://example.com/%category%/%postname%/ custom structure)
https://example.com/category/sub-category/post-name to https://example.com/category/post-name
*/
function remove_child_categories_from_permalinks( $category ) {
while ( $category->parent ) {
$category = get_term( $category->parent, 'category' );
}
return $category;
}
add_filter( 'post_link_category', 'remove_child_categories_from_permalinks' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment