Changeset 35961
- Timestamp:
- 12/16/2015 04:35:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-walker-page-dropdown.php
r35928 r35961 17 17 class Walker_PageDropdown extends Walker { 18 18 /** 19 * Walker tree type. 20 * 21 * @since 2.1.0 19 22 * @see Walker::$tree_type 20 * @since 2.1.021 23 * @var string 22 24 */ … … 24 26 25 27 /** 28 * Database fields. 29 * 30 * @since 2.1.0 26 31 * @see Walker::$db_fields 27 * @since 2.1.028 32 * @todo Decouple this 29 33 * @var array … … 32 36 33 37 /** 38 * Starts the element output. 39 * 40 * @since 2.1.0 41 * 34 42 * @see Walker::start_el() 35 * @since 2.1.036 43 * 37 44 * @param string $output Passed by reference. Used to append additional content. … … 71 78 */ 72 79 $title = apply_filters( 'list_pages', $title, $page ); 80 73 81 $output .= $pad . esc_html( $title ); 74 82 $output .= "</option>\n";
Note: See TracChangeset
for help on using the changeset viewer.