wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



image_media_send_to_editor › WordPress Function

Seit2.5.0
Veraltetn/v
image_media_send_to_editor ( $html, $attachment_id, $attachment )
Parameter: (3)
  • (string) $html
    Erforderlich: Ja
  • (int) $attachment_id
    Erforderlich: Ja
  • (array) $attachment
    Erforderlich: Ja
Gibt zurück:
  • (string)
Definiert in:
Codex:

Retrieves the media element HTML to send to the editor.



Quellcode

function image_media_send_to_editor( $html, $attachment_id, $attachment ) {
	$post = get_post( $attachment_id );

	if ( str_starts_with( $post->post_mime_type, 'image' ) ) {
		$url   = $attachment['url'];
		$align = ! empty( $attachment['align'] ) ? $attachment['align'] : 'none';
		$size  = ! empty( $attachment['image-size'] ) ? $attachment['image-size'] : 'medium';
		$alt   = ! empty( $attachment['image_alt'] ) ? $attachment['image_alt'] : '';
		$rel   = ( str_contains( $url, 'attachment_id' ) || get_attachment_link( $attachment_id ) === $url );

		return get_image_send_to_editor( $attachment_id, $attachment['post_excerpt'], $attachment['post_title'], $align, $url, $rel, $size, $alt );
	}

	return $html;
}