WordPress Version: 6.3
/**
* Removes the '_wp_post_thumbnail_context_filter' callback from the 'wp_get_attachment_image_context'
* filter hook. Internal use only.
*
* @ignore
* @since 6.3.0
* @access private
*/
function _wp_post_thumbnail_context_filter_remove()
{
remove_filter('wp_get_attachment_image_context', '_wp_post_thumbnail_context_filter');
}