Changeset 37055 for trunk/src/wp-includes/class-walker-page.php
- Timestamp:
- 03/22/2016 06:03:07 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-walker-page.php
r36175 r37055 16 16 */ 17 17 class Walker_Page extends Walker { 18 18 19 /** 19 * W alker tree type.20 * What the class handles. 20 21 * 21 22 * @since 2.1.0 23 * @access public 24 * @var string 25 * 22 26 * @see Walker::$tree_type 23 * @var string24 27 */ 25 28 public $tree_type = 'page'; 26 29 27 30 /** 28 * Database fields .31 * Database fields to use. 29 32 * 30 33 * @since 2.1.0 34 * @access private 35 * @var array 36 * 31 37 * @see Walker::$db_fields 32 38 * @todo Decouple this. 33 * @var array34 39 */ 35 public $db_fields = array ('parent' => 'post_parent', 'id' => 'ID');40 public $db_fields = array( 'parent' => 'post_parent', 'id' => 'ID' ); 36 41 37 42 /** … … 39 44 * 40 45 * @since 2.1.0 46 * @access public 41 47 * 42 48 * @see Walker::start_lvl() … … 56 62 * 57 63 * @since 2.1.0 64 * @access public 58 65 * 59 66 * @see Walker::end_lvl() … … 74 81 * @see Walker::start_el() 75 82 * @since 2.1.0 83 * @access public 76 84 * 77 85 * @param string $output Passed by reference. Used to append additional content. … … 158 166 * 159 167 * @since 2.1.0 168 * @access public 160 169 * 161 170 * @see Walker::end_el()
Note: See TracChangeset
for help on using the changeset viewer.