function get_attachment_icon( $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 ( !
$src =
get_attachment_icon_src( $post->ID,
$fullsize ) ) return false;
list
($src,
$src_file) =
$src;
// Do we need to constrain the image?
if ( ($max_dims =
apply_filters('attachment_max_dims',
$max_dims)) &&
file_exists($src_file) ) { $imagesize =
wp_getimagesize($src_file);
if (($imagesize[0
] >
$max_dims[0
]) ||
$imagesize[1
] >
$max_dims[1
] ) { $actual_aspect =
$imagesize[0
] /
$imagesize[1
];