image_media_send_to_editor
函数
image_media_send_to_editor ( $html, $attachment_id, $attachment )
- 参数
-
-
(string)
$html- Required: 是
-
(int)
$attachment_id- Required: 是
-
(array)
$attachment- Required: 是
-
(string)
- 返回值
-
- (string)
- 定义位置
-
-
wp-admin/includes/media.php
, line 1348
-
wp-admin/includes/media.php
- 引入
- 2.5.0
- 弃用
- –
Retrieves the media element HTML to send to the editor.
function image_media_send_to_editor( $html, $attachment_id, $attachment ) { $post = get_post( $attachment_id ); if ( 'image' === substr( $post->post_mime_type, 0, 5 ) ) { $url = $attachment['url']; $align = ! empty( $attachment['align'] ) ? $attachment['align'] : 'none'; $size = ! empty( $attachment['image-size'] ) ? $attachment['image-size'] : 'medium'; $alt = ! empty( $attachment['image_alt'] ) ? $attachment['image_alt'] : ''; $rel = ( strpos( $url, 'attachment_id' ) || get_attachment_link( $attachment_id ) === $url ); return get_image_send_to_editor( $attachment_id, $attachment['post_excerpt'], $attachment['post_title'], $align, $url, $rel, $size, $alt ); } return $html; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。