Changeset 51957
- Timestamp:
- 10/30/2021 08:15:59 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
wp-admin/includes/media.php (modified) (1 diff)
-
wp-includes/functions.php (modified) (1 diff)
-
wp-includes/general-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r51837 r51957 1522 1522 * @global WP_Query $wp_the_query WordPress Query object. 1523 1523 * 1524 * @param int $post_id Optional.Post ID.1524 * @param int $post_id Post ID. 1525 1525 * @param array $errors Errors for attachment, if any. 1526 1526 * @return string -
trunk/src/wp-includes/functions.php
r51950 r51957 566 566 * @param string $mysqlstring Date or datetime field type from MySQL. 567 567 * @param int|string $start_of_week Optional. Start of the week as an integer. Default empty string. 568 * @return array Keys are 'start' and 'end'. 568 * @return int[] { 569 * Week start and end dates as Unix timestamps. 570 * 571 * @type int $start The week start date as a Unix timestamp. 572 * @type int $end The week end date as a Unix timestamp. 573 * } 569 574 */ 570 575 function get_weekstartend( $mysqlstring, $start_of_week = '' ) { -
trunk/src/wp-includes/general-template.php
r51926 r51957 190 190 191 191 /** 192 * Fires before a template part is loaded.192 * Fires before an attempt is made to locate and load a template part. 193 193 * 194 194 * @since 5.2.0
Note: See TracChangeset
for help on using the changeset viewer.