Changeset 52299
- Timestamp:
- 12/01/2021 12:15:21 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/image.php
r52269 r52299 688 688 * @since 2.5.0 689 689 * 690 * @param string $str 691 * @return int 690 * @param string $str A date string expected to be in Exif format (Y:m:d H:i:s). 691 * @return int|false The unix timestamp, or false on failure. 692 692 */ 693 693 function wp_exif_date2ts( $str ) { -
trunk/src/wp-admin/includes/post.php
r52298 r52299 210 210 * @since 5.0.1 211 211 * 212 * @param array| null $post_data Optional. The array of post data to process.213 * Defaults to the `$_POST` superglobal.212 * @param array|WP_Error|null $post_data The array of post data to process, or an error object. 213 * Defaults to the `$_POST` superglobal. 214 214 * @return array|WP_Error Array of post data on success, WP_Error on failure. 215 215 */ -
trunk/src/wp-includes/class-wp-block.php
r51894 r52299 197 197 * 198 198 * @param array $options { 199 * Optional options object.200 * 201 * @type bool $dynamic Defaults to 'true'. Optionally set to false to avoid using the block's render_callback.199 * Optional options object. 200 * 201 * @type bool $dynamic Defaults to 'true'. Optionally set to false to avoid using the block's render_callback. 202 202 * } 203 203 * @return string Rendered block output. -
trunk/src/wp-includes/class-wp-http-proxy.php
r52215 r52299 45 45 * Whether proxy connection should be used. 46 46 * 47 * @since 2.8.0 48 * 49 * @use WP_PROXY_HOST 50 * @use WP_PROXY_PORT 47 * Constants which control this behaviour: 48 * 49 * - `WP_PROXY_HOST` 50 * - `WP_PROXY_PORT` 51 * 52 * @since 2.8.0 51 53 * 52 54 * @return bool … … 59 61 * Whether authentication should be used. 60 62 * 61 * @since 2.8.0 62 * 63 * @use WP_PROXY_USERNAME 64 * @use WP_PROXY_PASSWORD 63 * Constants which control this behaviour: 64 * 65 * - `WP_PROXY_USERNAME` 66 * - `WP_PROXY_PASSWORD` 67 * 68 * @since 2.8.0 65 69 * 66 70 * @return bool -
trunk/src/wp-includes/class-wp-query.php
r52226 r52299 2827 2827 * 2828 2828 * Covers the WHERE, GROUP BY, JOIN, ORDER BY, DISTINCT, 2829 * fields (SELECT), and LIMIT Sclauses.2829 * fields (SELECT), and LIMIT clauses. 2830 2830 * 2831 2831 * @since 3.1.0 … … 2951 2951 * 2952 2952 * Covers the WHERE, GROUP BY, JOIN, ORDER BY, DISTINCT, 2953 * fields (SELECT), and LIMIT Sclauses.2953 * fields (SELECT), and LIMIT clauses. 2954 2954 * 2955 2955 * @since 3.1.0 -
trunk/src/wp-includes/comment.php
r52205 r52299 367 367 * @param int $post_id Optional. Restrict the comment counts to the given post. Default 0, which indicates that 368 368 * comment counts for the whole site will be retrieved. 369 * @return array (){369 * @return array { 370 370 * The number of comments keyed by their status. 371 371 * -
trunk/src/wp-includes/media.php
r52245 r52299 4225 4225 * Arguments for enqueuing media scripts. 4226 4226 * 4227 * @type int|WP_Post A post object or ID.4227 * @type int|WP_Post $post A post object or ID. 4228 4228 * } 4229 4229 */ -
trunk/src/wp-includes/ms-functions.php
r52205 r52299 1308 1308 * a Super Admin creates a new user. Hook to {@see 'wpmu_new_user'} for events 1309 1309 * that should affect all new users, but only on Multisite (otherwise 1310 * use {@see 'user_register'}).1310 * use {@see 'user_register'}). 1311 1311 * 1312 1312 * @since MU (3.0.0) -
trunk/src/wp-includes/pomo/entry.php
r51919 r52299 17 17 * Whether the entry contains a string and its plural form, default is false 18 18 * 19 * @var bool ean19 * @var bool 20 20 */ 21 21 public $is_plural = false; -
trunk/src/wp-includes/taxonomy.php
r52204 r52299 4637 4637 * supported by get_the_taxonomies(), in addition to the following. 4638 4638 * 4639 * @type 4640 * @type 4641 * @type 4642 * @type 4639 * @type int|WP_Post $post Post ID or object to get taxonomies of. Default current post. 4640 * @type string $before Displays before the taxonomies. Default empty string. 4641 * @type string $sep Separates each taxonomy. Default is a space. 4642 * @type string $after Displays after the taxonomies. Default empty string. 4643 4643 * } 4644 4644 */
Note: See TracChangeset
for help on using the changeset viewer.