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



wp_caption_input_textarea › WordPress Function

Seit3.4.0
Veraltetn/v
wp_caption_input_textarea ( $edit_post )
Parameter:
  • (WP_Post) $edit_post Attachment WP_Post object.
    Erforderlich: Ja
Gibt zurück:
  • (string) HTML markup for the textarea element.
Definiert in:
Codex:

Outputs a textarea element for inputting an attachment caption.



Quellcode

function wp_caption_input_textarea( $edit_post ) {
	// Post data is already escaped.
	$name = "attachments[{$edit_post->ID}][post_excerpt]";

	return '<textarea name="' . $name . '" id="' . $name . '">' . $edit_post->post_excerpt . '</textarea>';
}