Skip to content

Instantly share code, notes, and snippets.

View tahar-elgunaoui's full-sized avatar
🐘

Tahar El gunaoui tahar-elgunaoui

🐘
View GitHub Profile
@tahar-elgunaoui
tahar-elgunaoui / functions.php
Created January 28, 2025 13:16 — forked from vietrick/functions.php
Remove child category in permalinks Wordpress
/*
*
* Remove child categories from permalink in Wordpress
* https://www.vietrick.com/remove-child-category-in-permalink/
*
*/
function remove_child_categories_from_permalinks( $category ) {
while ( $category->parent ) {
$category = get_term( $category->parent, 'category' );