get_attachment_innerHTML()
Deprecated since 2.5.0. It is no longer supported and may be removed in future releases. Use wp_get_attachment_image() instead.
Retrieve HTML content of image element.
Hooks from the function
Returns
String|false.
Usage
get_attachment_innerHTML( $id, $fullsize, $max_dims );
- $id(int)
- Post ID.
- $fullsize(true|false)
- Whether to have full size image.
Default: false - $max_dims(array)
- Dimensions of image.
Default: false
Notes
Changelog
| Since 2.0.0 | Introduced. |
| Deprecated since 2.5.0 | Use wp_get_attachment_image() |
get_attachment_innerHTML() get attachment innerHTML code WP 6.9
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);
}