Changeset 30983
- Timestamp:
- 12/20/2014 11:03:21 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r30982 r30983 711 711 * @since 0.71 712 712 * 713 * @param int $edit Accepts 1|true for editing the date, 0|false for adding the date.714 * @param int $for_post Accepts 1|true for applying the date to a post, 0|false for a comment.715 * @param int $tab_index The tabindex attribute to add. Default 0.716 * @param int $multi Optional. Whether the additional fields and buttons should be added.713 * @param int|bool $edit Accepts 1|true for editing the date, 0|false for adding the date. 714 * @param int|bool $for_post Accepts 1|true for applying the date to a post, 0|false for a comment. 715 * @param int $tab_index The tabindex attribute to add. Default 0. 716 * @param int|bool $multi Optional. Whether the additional fields and buttons should be added. 717 717 * Default 0|false. 718 718 */ -
trunk/src/wp-includes/general-template.php
r30982 r30983 1313 1313 * @type string $after Markup to append to the end of each link. Default empty. 1314 1314 * @type bool $show_post_count Whether to display the post count alongside the link. Default false. 1315 * @type bool 1315 * @type bool|int $echo Whether to echo or return the links list. Default 1|true to echo. 1316 1316 * @type string $order Whether to use ascending or descending order. Accepts 'ASC', or 'DESC'. 1317 1317 * Default 'DESC'. -
trunk/src/wp-includes/load.php
r30581 r30983 218 218 * @since 0.71 219 219 * 220 * @global float $timestart Seconds from when timer_start() is called.221 * @global float $timeend Seconds from when function is called.222 * 223 * @param int $display Whether to echo or return the results. Accepts 0|false for return,224 * 1|true for echo. Default 0|false.225 * @param int $precision The number of digits from the right of the decimal to display.226 * Default 3.220 * @global float $timestart Seconds from when timer_start() is called. 221 * @global float $timeend Seconds from when function is called. 222 * 223 * @param int|bool $display Whether to echo or return the results. Accepts 0|false for return, 224 * 1|true for echo. Default 0|false. 225 * @param int $precision The number of digits from the right of the decimal to display. 226 * Default 3. 227 227 * @return string The "second.microsecond" finished time calculation. The number is formatted 228 228 * for human consumption, both localized and rounded. -
trunk/src/wp-includes/post-template.php
r30912 r30983 1112 1112 * for additional arguments. 1113 1113 * 1114 * @type string $sort_column How to short the list of pages. Accepts post column names.1115 * Default 'menu_order, post_title'.1116 * @type string $menu_class Class to use for the div ID containing the page list. Default 'menu'.1117 * @type bool $echo Whether to echo the list or return it. Accepts true (echo) or false (return).1118 * Default true.1119 * @type string $link_before The HTML or text to prepend to $show_home text. Default empty.1120 * @type string $link_after The HTML or text to append to $show_home text. Default empty.1121 * @type int| string $show_home Whether to display the link to the home page. Can just enter the text1122 * you'd like shown for the home link. 1|true defaults to 'Home'.1114 * @type string $sort_column How to short the list of pages. Accepts post column names. 1115 * Default 'menu_order, post_title'. 1116 * @type string $menu_class Class to use for the div ID containing the page list. Default 'menu'. 1117 * @type bool $echo Whether to echo the list or return it. Accepts true (echo) or false (return). 1118 * Default true. 1119 * @type string $link_before The HTML or text to prepend to $show_home text. Default empty. 1120 * @type string $link_after The HTML or text to append to $show_home text. Default empty. 1121 * @type int|bool|string $show_home Whether to display the link to the home page. Can just enter the text 1122 * you'd like shown for the home link. 1|true defaults to 'Home'. 1123 1123 * } 1124 1124 * @return string html menu -
trunk/src/wp-includes/query.php
r30771 r30983 1473 1473 * Default all fields. Accepts 'ids', 'id=>parent'. 1474 1474 * @type int $hour Hour of the day. Default empty. Accepts numbers 0-23. 1475 * @type bool$ignore_sticky_posts Whether to ignore sticky posts or not. Setting this to false1475 * @type int|bool $ignore_sticky_posts Whether to ignore sticky posts or not. Setting this to false 1476 1476 * excludes stickies from 'post__in'. Accepts 1|true, 0|false. 1477 1477 * Default 0|false.
Note: See TracChangeset
for help on using the changeset viewer.