Changeset 21799 for trunk/wp-includes/post-template.php
- Timestamp:
- 09/10/2012 08:04:33 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post-template.php
r21767 r21799 234 234 * @access private 235 235 * @param array $match Match array from preg_replace_callback 236 * @return sstring236 * @return string 237 237 */ 238 238 function _convert_urlencoded_to_entities( $match ) { … … 870 870 * 871 871 * @param array|string $args 872 * @return string html menu 872 873 */ 873 874 function wp_page_menu( $args = array() ) { … … 983 984 * @param string $output Passed by reference. Used to append additional content. 984 985 * @param int $depth Depth of page. Used for padding. 986 * @param array $args 985 987 */ 986 988 function start_lvl( &$output, $depth = 0, $args = array() ) { … … 995 997 * @param string $output Passed by reference. Used to append additional content. 996 998 * @param int $depth Depth of page. Used for padding. 999 * @param array $args 997 1000 */ 998 1001 function end_lvl( &$output, $depth = 0, $args = array() ) { … … 1052 1055 * @param object $page Page data object. Not used. 1053 1056 * @param int $depth Depth of page. Not Used. 1057 * @param array $args 1054 1058 */ 1055 1059 function end_el( &$output, $page, $depth = 0, $args = array() ) { … … 1090 1094 * @param int $depth Depth of page in reference to parent pages. Used for padding. 1091 1095 * @param array $args Uses 'selected' argument for selected page to set selected HTML attribute for option element. 1096 * @param int $id 1092 1097 */ 1093 1098 function start_el(&$output, $page, $depth, $args, $id = 0) { … … 1138 1143 * @param bool $permalink Optional, default is false. Whether to add permalink to image. 1139 1144 * @param bool $icon Optional, default is false. Whether to include icon. 1140 * @param string $text Optional, default is false. If string, then will be link text.1145 * @param string|bool $text Optional, default is false. If string, then will be link text. 1141 1146 * @return string HTML content. 1142 1147 */ … … 1249 1254 * @since 3.4.0 1250 1255 * 1251 * @param int $ id The page ID to check. Defaults to the current post, when used in the loop.1256 * @param int $post_id The page ID to check. Defaults to the current post, when used in the loop. 1252 1257 * @return string|bool Page template filename. Returns an empty string when the default page template 1253 1258 * is in use. Returns false if the post is not a page.
Note: See TracChangeset
for help on using the changeset viewer.