Changeset 27367
- Timestamp:
- 03/03/2014 02:13:07 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-admin-bar.php
r26134 r27367 88 88 * - href - string - The link for the item. Optional. 89 89 * - group - boolean - If the node is a group. Optional. Default false. 90 * - meta - array - Meta data including the following keys: html, class, onclick, target, title, tabindex .90 * - meta - array - Meta data including the following keys: html, class, onclick, target, title, tabindex, rel. 91 91 */ 92 92 public function add_node( $args ) { … … 439 439 ?> title="<?php echo esc_attr( $node->meta['title'] ); ?>"<?php 440 440 endif; 441 if ( ! empty( $node->meta['rel'] ) ) : 442 ?> rel="<?php echo esc_attr( $node->meta['rel'] ); ?>"<?php 443 endif; 441 444 ?>><?php 442 445 else:
Note: See TracChangeset
for help on using the changeset viewer.