$args = array(
\'post_type\' => \'attachment\',
\'numberposts\' => null,
\'post_status\' => null,
\'post_parent\' => $post_id
);
$attachments = get_posts($args);
if ($attachments) {
echo "attachments rock!";
}
}
如果要确保Atachement是图像,可以使用:
if ( $attachments and wp_attachment_is_image( $post_id ) ) {
echo "attachments rock!";
}