WordPress Version: 5.5
/**
* Adds image HTML to editor.
*
* @since 2.5.0
*
* @param string $html
*/
function media_send_to_editor($html)
{
?>
<script type="text/javascript">
var win = window.dialogArguments || opener || parent || top;
win.send_to_editor( <?php
echo wp_json_encode($html);
?> );
</script>
<?php
exit;
}