wpseek.com
A WordPress-centric search engine for devs and theme authors



media_send_to_editor › WordPress Function

Since2.5.0
Deprecatedn/a
media_send_to_editor ( $html )
Parameters:
  • (string) $html
    Required: Yes
Returns:
  • (never)
Defined at:
Codex:

Adds image HTML to editor.



Source

function media_send_to_editor( $html ) {
	wp_print_inline_script_tag(
		sprintf(
			'( window.dialogArguments || opener || parent || top ).send_to_editor( %s );',
			wp_json_encode( $html, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES )
		)
	);
	exit;
}