W3cubDocs

/WordPress

wp_caption_input_textarea( WP_Post $edit_post )

Output a textarea element for inputting an attachment caption.

Parameters

$edit_post

(WP_Post) (Required) Attachment WP_Post object.

Return

(string) HTML markup for the textarea element.

Source

File: wp-admin/includes/media.php

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

Changelog

Version Description
3.4.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_caption_input_textarea