Add a missing DocBlock for wp_caption_input_textarea()
.
See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@32341 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b7bce33748
commit
eea4111667
@ -1050,6 +1050,14 @@ function image_link_input_fields($post, $url_type = '') {
|
||||
";
|
||||
}
|
||||
|
||||
/**
|
||||
* Output a textarea element for inputting an attachment caption.
|
||||
*
|
||||
* @since 3.4.0
|
||||
*
|
||||
* @param WP_Post $edit_post Attachment WP_Post object.
|
||||
* @return string HTML markup for the textarea element.
|
||||
*/
|
||||
function wp_caption_input_textarea($edit_post) {
|
||||
// Post data is already escaped.
|
||||
$name = "attachments[{$edit_post->ID}][post_excerpt]";
|
||||
|
Loading…
Reference in New Issue
Block a user