1
รับคำอธิบายภาพ
ฉันพยายามแยกโพสต์ใน 2 คอลัมน์ ภาพแรกและซ้ายจะเป็นภาพใด ๆ ภายในโพสต์และภาพที่สองและขวาจะเป็นthe_content()(ยกเว้นภาพ) ดังนั้นในตอนนี้ฉันก็ไม่มีปัญหาในการดึงภาพทั้งหมด อย่างไรก็ตาม - ฉันไม่สามารถรับคำบรรยายภาพหรือชื่อหรือคำอธิบาย นี่คือรหัสของฉัน: <?php if ( $images = get_posts(array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'numberposts' => -1, 'orderby' => 'title', 'order' => 'ASC', 'post_mime_type' => 'image', ))) { foreach( $images as $image ) { $attachmenturl = wp_get_attachment_url($image->ID); $attachmentimage = wp_get_attachment_image_src( $image->ID, …