Print title attributes for linkless toolbar items. see #19277.
git-svn-id: https://develop.svn.wordpress.org/trunk@19499 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
acffe708d3
commit
fffc2eee5c
@ -269,7 +269,11 @@ class WP_Admin_Bar {
|
||||
endif;
|
||||
?>><?php
|
||||
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;
|
||||
|
||||
echo $node->title;
|
||||
|
Loading…
Reference in New Issue
Block a user