Docs: Correct DocBlock formatting for filters accepting the `$parsed_args` parameter.
Follow-up to [45667]. See #48303. Built from https://develop.svn.wordpress.org/trunk@47096 git-svn-id: http://core.svn.wordpress.org/trunk@46896 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
185e36d428
commit
dd79e6e107
|
@ -167,8 +167,8 @@ function get_bookmarks( $args = '' ) {
|
|||
*
|
||||
* @see get_bookmarks()
|
||||
*
|
||||
* @param array $bookmarks List of the cached bookmarks.
|
||||
* @param array $parsed_args An array of bookmark query arguments.
|
||||
* @param array $bookmarks List of the cached bookmarks.
|
||||
* @param array $parsed_args An array of bookmark query arguments.
|
||||
*/
|
||||
return apply_filters( 'get_bookmarks', $bookmarks, $parsed_args );
|
||||
}
|
||||
|
|
|
@ -452,8 +452,8 @@ function wp_dropdown_categories( $args = '' ) {
|
|||
*
|
||||
* @since 2.1.0
|
||||
*
|
||||
* @param string $output HTML output.
|
||||
* @param array $parsed_args Arguments used to build the drop-down.
|
||||
* @param string $output HTML output.
|
||||
* @param array $parsed_args Arguments used to build the drop-down.
|
||||
*/
|
||||
$output = apply_filters( 'wp_dropdown_cats', $output, $parsed_args );
|
||||
|
||||
|
|
|
@ -226,8 +226,8 @@ class WP_Http {
|
|||
*
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param array $parsed_args An array of HTTP request arguments.
|
||||
* @param string $url The request URL.
|
||||
* @param array $parsed_args An array of HTTP request arguments.
|
||||
* @param string $url The request URL.
|
||||
*/
|
||||
$parsed_args = apply_filters( 'http_request_args', $parsed_args, $url );
|
||||
|
||||
|
|
|
@ -223,9 +223,9 @@ class WP_Http_Curl {
|
|||
*
|
||||
* @since 2.8.0
|
||||
*
|
||||
* @param resource $handle The cURL handle returned by curl_init() (passed by reference).
|
||||
* @param array $parsed_args The HTTP request arguments.
|
||||
* @param string $url The request URL.
|
||||
* @param resource $handle The cURL handle returned by curl_init() (passed by reference).
|
||||
* @param array $parsed_args The HTTP request arguments.
|
||||
* @param string $url The request URL.
|
||||
*/
|
||||
do_action_ref_array( 'http_api_curl', array( &$handle, $parsed_args, $url ) );
|
||||
|
||||
|
|
|
@ -1859,8 +1859,8 @@ function wp_get_archives( $args = '' ) {
|
|||
*
|
||||
* @since 2.2.0
|
||||
*
|
||||
* @param string $sql_where Portion of SQL query containing the WHERE clause.
|
||||
* @param array $parsed_args An array of default arguments.
|
||||
* @param string $sql_where Portion of SQL query containing the WHERE clause.
|
||||
* @param array $parsed_args An array of default arguments.
|
||||
*/
|
||||
$where = apply_filters( 'getarchives_where', $sql_where, $parsed_args );
|
||||
|
||||
|
|
|
@ -1146,8 +1146,8 @@ function wp_dropdown_users( $args = '' ) {
|
|||
*
|
||||
* @since 4.4.0
|
||||
*
|
||||
* @param array $query_args The query arguments for get_users().
|
||||
* @param array $parsed_args The arguments passed to wp_dropdown_users() combined with the defaults.
|
||||
* @param array $query_args The query arguments for get_users().
|
||||
* @param array $parsed_args The arguments passed to wp_dropdown_users() combined with the defaults.
|
||||
*/
|
||||
$query_args = apply_filters( 'wp_dropdown_users_args', $query_args, $parsed_args );
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.4-alpha-47095';
|
||||
$wp_version = '5.4-alpha-47096';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue