Changeset 37045
- Timestamp:
- 03/22/2016 05:21:20 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-walker-category-dropdown.php
r35926 r37045 16 16 */ 17 17 class Walker_CategoryDropdown extends Walker { 18 18 19 /** 20 * What the class handles. 21 * 22 * @since 2.1.0 23 * @access private 24 * @var string 25 * 19 26 * @see Walker::$tree_type 20 * @since 2.1.021 * @var string22 27 */ 23 28 public $tree_type = 'category'; 24 29 25 30 /** 26 * @see Walker::$db_fields 31 * Database fields to use. 32 * 27 33 * @since 2.1.0 34 * @access public 28 35 * @todo Decouple this 29 36 * @var array 37 * 38 * @see Walker::$db_fields 30 39 */ 31 40 public $db_fields = array ('parent' => 'parent', 'id' => 'term_id'); 32 41 33 42 /** 34 * Start the element output. 43 * Starts the element output. 44 * 45 * @since 2.1.0 46 * @access public 35 47 * 36 48 * @see Walker::start_el() 37 * @since 2.1.038 49 * 39 50 * @param string $output Passed by reference. Used to append additional content. … … 41 52 * @param int $depth Depth of category. Used for padding. 42 53 * @param array $args Uses 'selected', 'show_count', and 'value_field' keys, if they exist. 43 * See {@see wp_dropdown_categories()}.54 * See wp_dropdown_categories(). 44 55 * @param int $id Optional. ID of the current category. Default 0 (unused). 45 56 */
Note: See TracChangeset
for help on using the changeset viewer.