Forum Replies Created

Viewing 1 replies (of 1 total)
  • For WordPress 2.7 or higher
    open wp-includes/category-template.php
    find

    $catlink = str_replace( '%category%', $category_nicename, $catlink );

    add below

    $p = get_category_parents( $category->parent, false, '/', true );
    $catlink = str_replace($p, '', $catlink);

    save and upload

    this little script removes the parent category from Permalink

Viewing 1 replies (of 1 total)