Docs: Various docblock corrections.
See #53399 Built from https://develop.svn.wordpress.org/trunk@52299 git-svn-id: http://core.svn.wordpress.org/trunk@51891 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
15d7d368f3
commit
9a982b4ae8
|
@ -687,8 +687,8 @@ function wp_exif_frac2dec( $str ) {
|
|||
*
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @param string $str
|
||||
* @return int
|
||||
* @param string $str A date string expected to be in Exif format (Y:m:d H:i:s).
|
||||
* @return int|false The unix timestamp, or false on failure.
|
||||
*/
|
||||
function wp_exif_date2ts( $str ) {
|
||||
list( $date, $time ) = explode( ' ', trim( $str ) );
|
||||
|
|
|
@ -209,7 +209,7 @@ function _wp_translate_postdata( $update = false, $post_data = null ) {
|
|||
*
|
||||
* @since 5.0.1
|
||||
*
|
||||
* @param array|null $post_data Optional. The array of post data to process.
|
||||
* @param array|WP_Error|null $post_data The array of post data to process, or an error object.
|
||||
* Defaults to the `$_POST` superglobal.
|
||||
* @return array|WP_Error Array of post data on success, WP_Error on failure.
|
||||
*/
|
||||
|
|
|
@ -44,10 +44,12 @@ class WP_HTTP_Proxy {
|
|||
/**
|
||||
* Whether proxy connection should be used.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* Constants which control this behaviour:
|
||||
*
|
||||
* @use WP_PROXY_HOST
|
||||
* @use WP_PROXY_PORT
|
||||
* - `WP_PROXY_HOST`
|
||||
* - `WP_PROXY_PORT`
|
||||
*
|
||||
* @since 2.8.0
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
|
@ -58,10 +60,12 @@ class WP_HTTP_Proxy {
|
|||
/**
|
||||
* Whether authentication should be used.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* Constants which control this behaviour:
|
||||
*
|
||||
* @use WP_PROXY_USERNAME
|
||||
* @use WP_PROXY_PASSWORD
|
||||
* - `WP_PROXY_USERNAME`
|
||||
* - `WP_PROXY_PASSWORD`
|
||||
*
|
||||
* @since 2.8.0
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
|
|
|
@ -2826,7 +2826,7 @@ class WP_Query {
|
|||
* Filters all query clauses at once, for convenience.
|
||||
*
|
||||
* Covers the WHERE, GROUP BY, JOIN, ORDER BY, DISTINCT,
|
||||
* fields (SELECT), and LIMITS clauses.
|
||||
* fields (SELECT), and LIMIT clauses.
|
||||
*
|
||||
* @since 3.1.0
|
||||
*
|
||||
|
@ -2950,7 +2950,7 @@ class WP_Query {
|
|||
* For use by caching plugins.
|
||||
*
|
||||
* Covers the WHERE, GROUP BY, JOIN, ORDER BY, DISTINCT,
|
||||
* fields (SELECT), and LIMITS clauses.
|
||||
* fields (SELECT), and LIMIT clauses.
|
||||
*
|
||||
* @since 3.1.0
|
||||
*
|
||||
|
|
|
@ -366,7 +366,7 @@ function get_lastcommentmodified( $timezone = 'server' ) {
|
|||
*
|
||||
* @param int $post_id Optional. Restrict the comment counts to the given post. Default 0, which indicates that
|
||||
* comment counts for the whole site will be retrieved.
|
||||
* @return array() {
|
||||
* @return array {
|
||||
* The number of comments keyed by their status.
|
||||
*
|
||||
* @type int $approved The number of approved comments.
|
||||
|
|
|
@ -4224,7 +4224,7 @@ function wp_prepare_attachment_for_js( $attachment ) {
|
|||
* @param array $args {
|
||||
* Arguments for enqueuing media scripts.
|
||||
*
|
||||
* @type int|WP_Post A post object or ID.
|
||||
* @type int|WP_Post $post A post object or ID.
|
||||
* }
|
||||
*/
|
||||
function wp_enqueue_media( $args = array() ) {
|
||||
|
|
|
@ -1307,7 +1307,7 @@ function wp_delete_signup_on_user_delete( $id, $reassign, $user ) {
|
|||
* This function runs when a user self-registers as well as when
|
||||
* a Super Admin creates a new user. Hook to {@see 'wpmu_new_user'} for events
|
||||
* that should affect all new users, but only on Multisite (otherwise
|
||||
* use {@see'user_register'}).
|
||||
* use {@see 'user_register'}).
|
||||
*
|
||||
* @since MU (3.0.0)
|
||||
*
|
||||
|
|
|
@ -16,7 +16,7 @@ if ( ! class_exists( 'Translation_Entry', false ) ) :
|
|||
/**
|
||||
* Whether the entry contains a string and its plural form, default is false
|
||||
*
|
||||
* @var boolean
|
||||
* @var bool
|
||||
*/
|
||||
public $is_plural = false;
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-beta1-52298';
|
||||
$wp_version = '5.9-beta1-52299';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue