wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



media_send_to_editor › WordPress Function

Od2.5.0
Przestarzałyn/a
media_send_to_editor ( $html )
Parametry:
  • (string) $html
    Wymagane: Tak
Zdefiniowane na:
Codex:

Adds image HTML to editor.



Źródło

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;
}