I got it.
<?php include('blog/wp-blog-header.php'); ?>
<?php
$args = array(
'post_type' => 'attachment',
'numberposts' => 5,
'post_status' => null,
'post_parent' => null, // any parent
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $post) {
?>
<?php
setup_postdata($post);
if(get_the_ID() == "62") {
the_attachment_link($post->ID, true);
$withcomments = true; comments_template();
}
?>
<?php
}
}
?>