wp_caption_input_textarea

函数
wp_caption_input_textarea ( $edit_post )
参数
  • (WP_Post) $edit_post Attachment WP_Post object.
    Required:
返回值
  • (string) HTML markup for the textarea element.
定义位置
相关方法
wp_transition_post_statuswp_count_termswp_print_inline_script_tagesc_textareawp_assign_widget_to_sidebar
引入
3.4.0
弃用
-

wp_caption_input_textarea: 这个函数用于生成用户可以输入图片标题的输入字段的HTML。它通常在媒体管理器中使用。

输出一个用于输入附件标题的textarea元素。

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

常见问题

FAQs
查看更多 >