Improve code style.
git-svn-id: https://develop.svn.wordpress.org/trunk@9599 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
111173f543
commit
68d0d5b2ba
|
@ -64,9 +64,8 @@ function get_category_link( $category_id ) {
|
||||||
|
|
||||||
if ( $category->parent == $category_id ) // recursive recursion
|
if ( $category->parent == $category_id ) // recursive recursion
|
||||||
$category->parent = 0;
|
$category->parent = 0;
|
||||||
|
elseif ($category->parent != 0 )
|
||||||
if ( $parent = $category->parent )
|
$category_nicename = get_category_parents( $category->parent, false, '/', true ) . $category_nicename;
|
||||||
$category_nicename = get_category_parents( $parent, false, '/', true ) . $category_nicename;
|
|
||||||
|
|
||||||
$catlink = str_replace( '%category%', $category_nicename, $catlink );
|
$catlink = str_replace( '%category%', $category_nicename, $catlink );
|
||||||
$catlink = get_option( 'home' ) . user_trailingslashit( $catlink, 'category' );
|
$catlink = get_option( 'home' ) . user_trailingslashit( $catlink, 'category' );
|
||||||
|
|
Loading…
Reference in New Issue