Pass on the $separator. Fixes #7005.
git-svn-id: http://svn.automattic.com/wordpress/trunk@9190 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5b22c24e44
commit
b31aa3f568
|
@ -219,13 +219,13 @@ function get_the_category_list( $separator = '', $parents='', $post_id = false )
|
|||
switch ( strtolower( $parents ) ) {
|
||||
case 'multiple':
|
||||
if ( $category->parent )
|
||||
$thelist .= get_category_parents( $category->parent, true );
|
||||
$thelist .= get_category_parents( $category->parent, true, $separator );
|
||||
$thelist .= '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . $rel . '>' . $category->name.'</a></li>';
|
||||
break;
|
||||
case 'single':
|
||||
$thelist .= '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . $rel . '>';
|
||||
if ( $category->parent )
|
||||
$thelist .= get_category_parents( $category->parent, false );
|
||||
$thelist .= get_category_parents( $category->parent, false, $separator );
|
||||
$thelist .= $category->name.'</a></li>';
|
||||
break;
|
||||
case '':
|
||||
|
@ -242,13 +242,13 @@ function get_the_category_list( $separator = '', $parents='', $post_id = false )
|
|||
switch ( strtolower( $parents ) ) {
|
||||
case 'multiple':
|
||||
if ( $category->parent )
|
||||
$thelist .= get_category_parents( $category->parent, true );
|
||||
$thelist .= get_category_parents( $category->parent, true, $separator );
|
||||
$thelist .= '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . $rel . '>' . $category->cat_name.'</a>';
|
||||
break;
|
||||
case 'single':
|
||||
$thelist .= '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . $rel . '>';
|
||||
if ( $category->parent )
|
||||
$thelist .= get_category_parents( $category->parent, false );
|
||||
$thelist .= get_category_parents( $category->parent, false, $separator );
|
||||
$thelist .= "$category->cat_name</a>";
|
||||
break;
|
||||
case '':
|
||||
|
|
Loading…
Reference in New Issue