Changeset 52422
- Timestamp:
- 12/29/2021 05:26:26 PM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin-install.php
r52419 r52422 137 137 * Filters the response for the current WordPress.org Plugin Installation API request. 138 138 * 139 * Passing a non-false value will effectively short-circuit the WordPress.org API request.139 * Returning a non-false value will effectively short-circuit the WordPress.org API request. 140 140 * 141 141 * If `$action` is 'query_plugins' or 'plugin_information', an object MUST be passed. -
trunk/src/wp-admin/includes/theme.php
r52406 r52422 522 522 * Filters whether to override the WordPress.org Themes API. 523 523 * 524 * Passing a non-false value will effectively short-circuit the WordPress.org API request.524 * Returning a non-false value will effectively short-circuit the WordPress.org API request. 525 525 * 526 526 * If `$action` is 'query_themes', 'theme_information', or 'feature_list', an object MUST -
trunk/src/wp-admin/options-reading.php
r51475 r52422 192 192 * By default the privacy options form displays a single checkbox to 'discourage' search 193 193 * engines from indexing the site. Hooking to this action serves a dual purpose: 194 * 194 195 * 1. Disable the single checkbox in favor of a multiple-choice list of radio buttons. 195 196 * 2. Open the door to adding additional radio button choices to the list. -
trunk/src/wp-includes/class-wp-http.php
r52328 r52422 436 436 437 437 /** 438 * Filters theHTTP API response immediately before the response is returned.438 * Filters a successful HTTP API response immediately before the response is returned. 439 439 * 440 440 * @since 2.9.0 -
trunk/src/wp-includes/class-wp-list-util.php
r52066 r52422 10 10 * List utility. 11 11 * 12 * Utility class to handle operations on an array of objects .12 * Utility class to handle operations on an array of objects or arrays. 13 13 * 14 14 * @since 4.7.0 … … 141 141 142 142 /** 143 * Plucks a certain field out of each object in the list.143 * Plucks a certain field out of each element in the input array. 144 144 * 145 145 * This has the same functionality and prototype of … … 148 148 * @since 4.7.0 149 149 * 150 * @param int|string $field Field from the object to place instead of the entire object151 * @param int|string $index_key Optional. Field from the object to use as keys for the new array.150 * @param int|string $field Field to fetch from the object or array. 151 * @param int|string $index_key Optional. Field from the element to use as keys for the new array. 152 152 * Default null. 153 153 * @return array Array of found values. If `$index_key` is set, an array of found values with keys … … 202 202 203 203 /** 204 * Sorts the list,based on one or more orderby arguments.204 * Sorts the input array based on one or more orderby arguments. 205 205 * 206 206 * @since 4.7.0 … … 240 240 241 241 /** 242 * Callback to sort the listby specific fields.242 * Callback to sort an array by specific fields. 243 243 * 244 244 * @since 4.7.0 -
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r52026 r52422 6400 6400 * Filters whether to preempt the XML-RPC media upload. 6401 6401 * 6402 * Passing a truthy value will effectively short-circuit the media upload,6402 * Returning a truthy value will effectively short-circuit the media upload, 6403 6403 * returning that value as a 500 error instead. 6404 6404 * -
trunk/src/wp-includes/functions.php
r52416 r52422 5107 5107 5108 5108 /** 5109 * Pluck a certain field out of each object in a list.5109 * Plucks a certain field out of each object or array in an array. 5110 5110 * 5111 5111 * This has the same functionality and prototype of … … 5131 5131 5132 5132 /** 5133 * Sorts a list of objects,based on one or more orderby arguments.5133 * Sorts an array of objects or arrays based on one or more orderby arguments. 5134 5134 * 5135 5135 * @since 4.7.0 -
trunk/src/wp-includes/pluggable.php
r52208 r52422 2721 2721 * Allows the HTML for a user's avatar to be returned early. 2722 2722 * 2723 * Passing a non-null value will effectively short-circuit get_avatar(), passing2723 * Returning a non-null value will effectively short-circuit get_avatar(), passing 2724 2724 * the value through the {@see 'get_avatar'} filter and returning early. 2725 2725 * -
trunk/src/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php
r52204 r52422 76 76 * Filters the posts URL list before it is generated. 77 77 * 78 * Passing a non-null value will effectively short-circuit the generation,78 * Returning a non-null value will effectively short-circuit the generation, 79 79 * returning that value instead. 80 80 * -
trunk/src/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php
r52204 r52422 72 72 * Filters the taxonomies URL list before it is generated. 73 73 * 74 * Passing a non-null value will effectively short-circuit the generation,74 * Returning a non-null value will effectively short-circuit the generation, 75 75 * returning that value instead. 76 76 * -
trunk/src/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php
r52204 r52422 41 41 * Filters the users URL list before it is generated. 42 42 * 43 * Passing a non-null value will effectively short-circuit the generation,43 * Returning a non-null value will effectively short-circuit the generation, 44 44 * returning that value instead. 45 45 * … … 102 102 * Filters the max number of pages for a user sitemap before it is generated. 103 103 * 104 * Passing a non-null value will effectively short-circuit the generation,104 * Returning a non-null value will effectively short-circuit the generation, 105 105 * returning that value instead. 106 106 * -
trunk/src/wp-includes/wp-db.php
r52373 r52422 2877 2877 * Filters the table charset value before the DB is checked. 2878 2878 * 2879 * Passing a non-null value tothe filter will effectively short-circuit2879 * Returning a non-null value from the filter will effectively short-circuit 2880 2880 * checking the DB for the charset, returning that value instead. 2881 2881 *
Note: See TracChangeset
for help on using the changeset viewer.