5
게시물 콘텐츠에서 첫 번째 이미지 가져 오기 (예 : 핫 링크 된 이미지)
이 코드를 코덱스 에서 직접 사용하고 있습니다 . function echo_first_image ($postID) { $args = array( 'numberposts' => 1, 'order'=> 'ASC', 'post_mime_type' => 'image', 'post_parent' => $postID, 'post_status' => null, 'post_type' => 'attachment' ); $attachments = get_children( $args ); //print_r($attachments); if ($attachments) { foreach($attachments as $attachment) { $image_attributes = wp_get_attachment_image_src( $attachment->ID, …