Warning: This function has been deprecated. Use wp_get_attachment_image() instead.
get_attachment_innerHTML( int $id, bool $fullsize = false, array $max_dims = false )
Retrieve HTML content of image element.
描述
参数
- $id
-
(int)
(Optional)
Post ID. - $fullsize
-
(bool)
(Optional)
default to false. Whether to have full size image.Default value: false
- $max_dims
-
(array)
(Optional)
Dimensions of image.Default value: false
返回值
(false|string)
源代码
File: wp-includes/deprecated.php
function get_attachment_innerHTML($id = 0, $fullsize = false, $max_dims = false) {
_deprecated_function( __FUNCTION__, '2.5.0', 'wp_get_attachment_image()' );
$id = (int) $id;
if ( !$post = get_post($id) )
return false;
if ( $innerHTML = get_attachment_icon($post->ID, $fullsize, $max_dims))
return $innerHTML;
$innerHTML = esc_attr($post->post_title);
return apply_filters('attachment_innerHTML', $innerHTML, $post->ID);
}
更新日志
Version | 描述 |
---|---|
2.5.0 | Use wp_get_attachment_image() |
2.0.0 | Introduced. |
相关函数
Uses
-
wp-includes/formatting.php:
esc_attr() -
wp-includes/deprecated.php:
get_attachment_icon() -
wp-includes/functions.php:
_deprecated_function() -
wp-includes/plugin.php:
apply_filters() -
wp-includes/post.php:
get_post()
Used By
-
wp-includes/deprecated.php:
get_the_attachment_link()
你可能对这些文章感兴趣:
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_modified_date()用法示例
- wordpress函数get_the_modified_time()用法示例
- wordpress函数get_the_modified_author()用法示例
- wordpress函数get_the_guid()用法示例
- wordpress函数get_the_ID()用法示例
- wordpress函数get_the_excerpt()用法示例
如有疑问,请前往问答中心反馈!
反馈