mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-16 06:40:25 +00:00
Add "Choose from popular tags" to the tags postbox
git-svn-id: https://develop.svn.wordpress.org/trunk@9518 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -664,7 +664,7 @@ function wp_generate_tag_cloud( $tags, $args = '' ) {
|
||||
|
||||
foreach ( $tags as $key => $tag ) {
|
||||
$count = $counts[ $key ];
|
||||
$tag_link = clean_url( $tag->link );
|
||||
$tag_link = '#' != $tag->link ? clean_url( $tag->link ) : '#';
|
||||
$tag_id = isset($tags[ $key ]->id) ? $tags[ $key ]->id : $key;
|
||||
$tag_name = $tags[ $key ]->name;
|
||||
$a[] = "<a href='$tag_link' class='tag-link-$tag_id' title='" . attribute_escape( sprintf( __ngettext( $single_text, $multiple_text, $count ), $count ) ) . "'$rel style='font-size: " .
|
||||
|
||||
Reference in New Issue
Block a user