Changeset 56110 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 06/29/2023 03:31:49 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r56101 r56110 4646 4646 */ 4647 4647 function wp_queue_comments_for_comment_meta_lazyload( $comments ) { 4648 _deprecated_function( __FUNCTION__, '6.3.0', 'wp_lazyload_comment_meta ' );4648 _deprecated_function( __FUNCTION__, '6.3.0', 'wp_lazyload_comment_meta()' ); 4649 4649 // Don't use `wp_list_pluck()` to avoid by-reference manipulation. 4650 4650 $comment_ids = array(); … … 4686 4686 */ 4687 4687 function wp_get_loading_attr_default( $context ) { 4688 _deprecated_function( __FUNCTION__, '6.3.0', 'wp_get_loading_optimization_attributes ' );4688 _deprecated_function( __FUNCTION__, '6.3.0', 'wp_get_loading_optimization_attributes()' ); 4689 4689 global $wp_query; 4690 4690 … … 4768 4768 */ 4769 4769 function wp_img_tag_add_loading_attr( $image, $context ) { 4770 _deprecated_function( __FUNCTION__, '6.3.0', 'wp_img_tag_add_loading_optimization_attrs ' );4770 _deprecated_function( __FUNCTION__, '6.3.0', 'wp_img_tag_add_loading_optimization_attrs()' ); 4771 4771 /* 4772 4772 * Get loading attribute value to use. This must occur before the conditional check below so that even images that … … 5209 5209 */ 5210 5210 function wp_register_duotone_support( $block_type ) { 5211 _deprecated_function( __FUNCTION__, '6.3.0', 'WP_Duotone::register_duotone_support ' );5211 _deprecated_function( __FUNCTION__, '6.3.0', 'WP_Duotone::register_duotone_support()' ); 5212 5212 return WP_Duotone::register_duotone_support( $block_type ); 5213 5213 } … … 5219 5219 * @since 6.1.0 Allow unset for preset colors. 5220 5220 * @deprecated 6.3.0 Use WP_Duotone::render_duotone_support() instead. 5221 * 5221 * 5222 5222 * @access private 5223 5223 * … … 5227 5227 */ 5228 5228 function wp_render_duotone_support( $block_content, $block ) { 5229 _deprecated_function( __FUNCTION__, '6.3.0', 'WP_Duotone::render_duotone_support ' );5229 _deprecated_function( __FUNCTION__, '6.3.0', 'WP_Duotone::render_duotone_support()' ); 5230 5230 return WP_Duotone::render_duotone_support( $block_content, $block ); 5231 5231 }
Note: See TracChangeset
for help on using the changeset viewer.