Print title attributes for linkless toolbar items. see #19277.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19499 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9dc5cf45a8
commit
7c6cd25f00
|
@ -269,7 +269,11 @@ class WP_Admin_Bar {
|
||||||
endif;
|
endif;
|
||||||
?>><?php
|
?>><?php
|
||||||
else:
|
else:
|
||||||
?><div class="ab-item ab-empty-item" <?php echo $aria_attributes; ?>><?php
|
?><div class="ab-item ab-empty-item" <?php echo $aria_attributes;
|
||||||
|
if ( ! empty( $node->meta['title'] ) ) :
|
||||||
|
?> title="<?php echo esc_attr( $node->meta['title'] ); ?>"<?php
|
||||||
|
endif;
|
||||||
|
?>><?php
|
||||||
endif;
|
endif;
|
||||||
|
|
||||||
echo $node->title;
|
echo $node->title;
|
||||||
|
|
Loading…
Reference in New Issue