Ticket #11095: 11095.2.patch
File 11095.2.patch, 1.1 KB (added by , 10 years ago) |
---|
-
wp-includes/post-template.php
1200 1200 * @type string $link_after The HTML or text to append to $show_home text. Default empty. 1201 1201 * @type int|bool|string $show_home Whether to display the link to the home page. Can just enter the text 1202 1202 * you'd like shown for the home link. 1|true defaults to 'Home'. 1203 * @type string $before The HTML or text to prepend to the menu. Default is '<ul>'. 1204 * @type string $after The HTML or text to append to the menu. Default is '</ul>'. 1205 * @type WP_Walker $walker Walker instance to use building the menu. Default empty (Walker_Page). 1203 1206 * } 1204 1207 * @return string|void HTML menu 1205 1208 */ … … 1210 1213 'echo' => true, 1211 1214 'link_before' => '', 1212 1215 'link_after' => '', 1216 'show_home' => true, 1213 1217 'before' => '<ul>', 1214 1218 'after' => '</ul>', 1215 1219 'walker' => ''