Changeset 37639
- Timestamp:
- 06/06/2016 05:46:20 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/nav-menu-template.php
r37638 r37639 18 18 * What the class handles. 19 19 * 20 * @since 3.0.0 21 * @access public 22 * @var string 23 * 20 24 * @see Walker::$tree_type 21 * @since 3.0.022 * @var string23 25 */ 24 26 public $tree_type = array( 'post_type', 'taxonomy', 'custom' ); … … 27 29 * Database fields to use. 28 30 * 29 * @s ee Walker::$db_fields30 * @ since 3.0.031 * @since 3.0.0 32 * @access public 31 33 * @todo Decouple this. 32 34 * @var array 35 * 36 * @see Walker::$db_fields 33 37 */ 34 38 public $db_fields = array( 'parent' => 'menu_item_parent', 'id' => 'db_id' ); … … 37 41 * Starts the list before the elements are added. 38 42 * 43 * @since 3.0.0 44 * 39 45 * @see Walker::start_lvl() 40 *41 * @since 3.0.042 46 * 43 47 * @param string $output Passed by reference. Used to append additional content. … … 53 57 * Ends the list of after the elements are added. 54 58 * 59 * @since 3.0.0 60 * 55 61 * @see Walker::end_lvl() 56 *57 * @since 3.0.058 62 * 59 63 * @param string $output Passed by reference. Used to append additional content. … … 69 73 * Starts the element output. 70 74 * 75 * @since 3.0.0 76 * @since 4.4.0 The {@see 'nav_menu_item_args'} filter was added. 77 * 71 78 * @see Walker::start_el() 72 *73 * @since 3.0.074 * @since 4.4.0 The {@see 'nav_menu_item_args'} filter was added.75 79 * 76 80 * @param string $output Passed by reference. Used to append additional content. … … 202 206 * Ends the element output, if needed. 203 207 * 208 * @since 3.0.0 209 * 204 210 * @see Walker::end_el() 205 *206 * @since 3.0.0207 211 * 208 212 * @param string $output Passed by reference. Used to append additional content.
Note: See TracChangeset
for help on using the changeset viewer.