Docs: Fix a typo in the DocBlock for `themes_api()`, `themes_api`, `plugins_api()`, and `plugins_api`.
See #32246. Built from https://develop.svn.wordpress.org/trunk@38025 git-svn-id: http://core.svn.wordpress.org/trunk@37966 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7eb6471461
commit
559c6637bf
|
@ -20,7 +20,7 @@
|
|||
*
|
||||
* The second filter, {@see 'plugins_api'}, allows a plugin to override the WordPress.org
|
||||
* Plugin Install API entirely. If `$action` is 'query_plugins' or 'plugin_information',
|
||||
* an object MUST be passed. If `$action` is 'hot_tags` or 'hot_categories', an array MUST
|
||||
* an object MUST be passed. If `$action` is 'hot_tags' or 'hot_categories', an array MUST
|
||||
* be passed.
|
||||
*
|
||||
* Finally, the third filter, {@see 'plugins_api_result'}, makes it possible to filter the
|
||||
|
@ -130,7 +130,7 @@ function plugins_api( $action, $args = array() ) {
|
|||
* Passing a non-false value will effectively short-circuit the WordPress.org API request.
|
||||
*
|
||||
* If `$action` is 'query_plugins' or 'plugin_information', an object MUST be passed.
|
||||
* If `$action` is 'hot_tags` or 'hot_categories', an array should be passed.
|
||||
* If `$action` is 'hot_tags' or 'hot_categories', an array should be passed.
|
||||
*
|
||||
* @since 2.7.0
|
||||
*
|
||||
|
|
|
@ -322,7 +322,7 @@ function get_theme_feature_list( $api = true ) {
|
|||
*
|
||||
* The second filter, {@see 'themes_api'}, allows a plugin to override the WordPress.org
|
||||
* Theme API entirely. If `$action` is 'query_themes', 'theme_information', or 'feature_list',
|
||||
* an object MUST be passed. If `$action` is 'hot_tags`, an array should be passed.
|
||||
* an object MUST be passed. If `$action` is 'hot_tags', an array should be passed.
|
||||
*
|
||||
* Finally, the third filter, {@see 'themes_api_result'}, makes it possible to filter the
|
||||
* response object or array, depending on the `$action` type.
|
||||
|
@ -422,7 +422,7 @@ function themes_api( $action, $args = array() ) {
|
|||
* Passing a non-false value will effectively short-circuit the WordPress.org API request.
|
||||
*
|
||||
* If `$action` is 'query_themes', 'theme_information', or 'feature_list', an object MUST
|
||||
* be passed. If `$action` is 'hot_tags`, an array should be passed.
|
||||
* be passed. If `$action` is 'hot_tags', an array should be passed.
|
||||
*
|
||||
* @since 2.8.0
|
||||
*
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.6-beta2-38024';
|
||||
$wp_version = '4.6-beta2-38025';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue