Add a missing DocBlock for `wp_caption_input_textarea()`.
See #32246. Built from https://develop.svn.wordpress.org/trunk@32341 git-svn-id: http://core.svn.wordpress.org/trunk@32312 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e7e93f50cf
commit
08e3572b7c
|
@ -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]";
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32340';
|
||||
$wp_version = '4.3-alpha-32341';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue