Changeset 49941
- Timestamp:
- 01/06/2021 05:23:53 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r49935 r49941 4434 4434 4435 4435 /** 4436 * Merge user defined arguments into defaults array.4436 * Merges user defined arguments into defaults array. 4437 4437 * 4438 4438 * This function is used throughout WordPress to allow for both string or array … … 4463 4463 4464 4464 /** 4465 * C leans up an array, comma- or space-separated list of scalar values.4465 * Converts a comma- or space-separated list of scalar values to an array. 4466 4466 * 4467 4467 * @since 5.1.0 4468 4468 * 4469 4469 * @param array|string $list List of values. 4470 * @return array Sanitized array of values.4470 * @return array Array of values. 4471 4471 */ 4472 4472 function wp_parse_list( $list ) { … … 4479 4479 4480 4480 /** 4481 * Clean up an array, comma- or space-separated list of IDs.4481 * Cleans up an array, comma- or space-separated list of IDs. 4482 4482 * 4483 4483 * @since 3.0.0 … … 4493 4493 4494 4494 /** 4495 * Clean up an array, comma- or space-separated list of slugs.4495 * Cleans up an array, comma- or space-separated list of slugs. 4496 4496 * 4497 4497 * @since 4.7.0
Note: See TracChangeset
for help on using the changeset viewer.