Set (featured) thumbnail for post?
Perhaps use set_post_thumbnail()? (Codex ref.) EDIT To get the attachment ID using the Post ID: // Associative array of attachments, as $attachment_id => $attachment $attachments = get_children( array(‘post_parent’ => $post->ID, ‘post_status’ => ‘inherit’, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘order’ => ‘ASC’, ‘orderby’ => ‘menu_order ID’) ); $attachment = $attachments[0]; // ID of your single, … Read more