Changeset 48099
- Timestamp:
- 06/19/2020 10:25:47 PM (5 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-object-cache.php
r47944 r48099 309 309 * 310 310 * @param array $keys Array of keys under which the cache contents are stored. 311 * @param string $group Optional. Where the cache contents are grouped. Default empty.311 * @param string $group Optional. Where the cache contents are grouped. Default 'default'. 312 312 * @param bool $force Optional. Whether to force an update of the local cache 313 313 * from the persistent cache. Default false. -
trunk/src/wp-includes/formatting.php
r48072 r48099 936 936 * 937 937 * @since 1.2.2 938 * @since 5.5.0 `$quote_style` also accepts '`ENT_XML1`.938 * @since 5.5.0 `$quote_style` also accepts `ENT_XML1`. 939 939 * @access private 940 940 * -
trunk/src/wp-includes/media.php
r48067 r48099 1587 1587 * 1588 1588 * @param string $tag_name The tag name. 1589 * @param string $context Additional context, like the current filter name or the function name from where this was called.1589 * @param string $context Additional context, like the current filter name or the function name from where this was called. 1590 1590 * @return bool Whether to add the attribute. 1591 1591 */ … … 1600 1600 * @since 5.5.0 1601 1601 * 1602 * @param bool $default Default value.1602 * @param bool $default Default value. 1603 1603 * @param string $tag_name The tag name. 1604 * @param string $context Additional context, like the current filter name or the function name from where this was called.1604 * @param string $context Additional context, like the current filter name or the function name from where this was called. 1605 1605 */ 1606 1606 return (bool) apply_filters( 'wp_lazy_loading_enabled', $default, $tag_name, $context ); -
trunk/src/wp-includes/post.php
r48067 r48099 4717 4717 * @since 5.5.0 4718 4718 * 4719 * @param array $post_types An array of post types. Default empty array.4719 * @param string[] $post_types An array of post type names. Default empty array. 4720 4720 */ 4721 4721 $default_category_post_types = apply_filters( 'default_category_post_types', array() );
Note: See TracChangeset
for help on using the changeset viewer.