- Timestamp:
- 02/19/2018 10:23:58 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/post-template.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-template.php
r42710 r42721 1056 1056 1057 1057 /** 1058 * Display list of post custom fields.1058 * Display a list of post custom fields. 1059 1059 * 1060 1060 * @since 1.2.0 … … 1104 1104 1105 1105 /** 1106 * Retrieve or display list of pages as a dropdown (select list).1106 * Retrieve or display a list of pages as a dropdown (select list). 1107 1107 * 1108 1108 * @since 2.1.0 … … 1110 1110 * @since 4.3.0 The `$class` argument was added. 1111 1111 * 1112 * @see get_pages() 1113 * 1112 1114 * @param array|string $args { 1113 * Optional. Array or string of arguments to generate a page s drop-down element.1115 * Optional. Array or string of arguments to generate a page dropdown. See `get_pages()` for additional arguments. 1114 1116 * 1115 1117 * @type int $depth Maximum depth. Default 0. … … 1191 1193 1192 1194 /** 1193 * Retrieve or display list of pages (or hierarchical post type items) in list (li) format.1195 * Retrieve or display a list of pages (or hierarchical post type items) in list (li) format. 1194 1196 * 1195 1197 * @since 1.5.0 … … 1201 1203 * 1202 1204 * @param array|string $args { 1203 * Array or string of arguments. Optional.1205 * Optional. Array or string of arguments to generate a list of pages. See `get_pages()` for additional arguments. 1204 1206 * 1205 1207 * @type int $child_of Display only the sub-pages of a single page by ID. Default 0 (all pages). … … 1329 1331 * 1330 1332 * @param array|string $args { 1331 * Optional. Ar guments to generate a page menu. See wp_list_pages()for additional arguments.1333 * Optional. Array or string of arguments to generate a page menu. See `wp_list_pages()` for additional arguments. 1332 1334 * 1333 1335 * @type string $sort_column How to sort the list of pages. Accepts post column names. … … 1344 1346 * @type string $before The HTML or text to prepend to the menu. Default is '<ul>'. 1345 1347 * @type string $after The HTML or text to append to the menu. Default is '</ul>'. 1346 * @type string $item_spacing Whether to preserve whitespace within the menu's HTML. Accepts 'preserve' or 'discard'. Default 'discard'. 1348 * @type string $item_spacing Whether to preserve whitespace within the menu's HTML. Accepts 'preserve' 1349 * or 'discard'. Default 'discard'. 1347 1350 * @type Walker $walker Walker instance to use for listing pages. Default empty (Walker_Page). 1348 1351 * } … … 1862 1865 1863 1866 /** 1864 * Display list of a post's revisions.1867 * Display a list of a post's revisions. 1865 1868 * 1866 1869 * Can output either a UL with edit links or a TABLE with diff interface, and
Note: See TracChangeset
for help on using the changeset viewer.