Changeset 47096
- Timestamp:
- 01/21/2020 03:39:17 PM (5 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/bookmark.php
r46661 r47096 168 168 * @see get_bookmarks() 169 169 * 170 * @param array $bookmarks List of the cached bookmarks.171 * @param array $parsed_args 170 * @param array $bookmarks List of the cached bookmarks. 171 * @param array $parsed_args An array of bookmark query arguments. 172 172 */ 173 173 return apply_filters( 'get_bookmarks', $bookmarks, $parsed_args ); -
trunk/src/wp-includes/category-template.php
r47060 r47096 453 453 * @since 2.1.0 454 454 * 455 * @param string $output HTML output.456 * @param array $parsed_args 455 * @param string $output HTML output. 456 * @param array $parsed_args Arguments used to build the drop-down. 457 457 */ 458 458 $output = apply_filters( 'wp_dropdown_cats', $output, $parsed_args ); -
trunk/src/wp-includes/class-http.php
r47060 r47096 227 227 * @since 2.7.0 228 228 * 229 * @param array $parsed_args 230 * @param string $url The request URL.229 * @param array $parsed_args An array of HTTP request arguments. 230 * @param string $url The request URL. 231 231 */ 232 232 $parsed_args = apply_filters( 'http_request_args', $parsed_args, $url ); -
trunk/src/wp-includes/class-wp-http-curl.php
r46218 r47096 224 224 * @since 2.8.0 225 225 * 226 * @param resource $handle The cURL handle returned by curl_init() (passed by reference).227 * @param array $parsed_args 228 * @param string $url The request URL.226 * @param resource $handle The cURL handle returned by curl_init() (passed by reference). 227 * @param array $parsed_args The HTTP request arguments. 228 * @param string $url The request URL. 229 229 */ 230 230 do_action_ref_array( 'http_api_curl', array( &$handle, $parsed_args, $url ) ); -
trunk/src/wp-includes/general-template.php
r47060 r47096 1860 1860 * @since 2.2.0 1861 1861 * 1862 * @param string $sql_where Portion of SQL query containing the WHERE clause.1863 * @param array $parsed_args 1862 * @param string $sql_where Portion of SQL query containing the WHERE clause. 1863 * @param array $parsed_args An array of default arguments. 1864 1864 */ 1865 1865 $where = apply_filters( 'getarchives_where', $sql_where, $parsed_args ); -
trunk/src/wp-includes/user.php
r47060 r47096 1147 1147 * @since 4.4.0 1148 1148 * 1149 * @param array $query_args The query arguments for get_users().1150 * @param array $parsed_args 1149 * @param array $query_args The query arguments for get_users(). 1150 * @param array $parsed_args The arguments passed to wp_dropdown_users() combined with the defaults. 1151 1151 */ 1152 1152 $query_args = apply_filters( 'wp_dropdown_users_args', $query_args, $parsed_args );
Note: See TracChangeset
for help on using the changeset viewer.