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( …