คำถามติดแท็ก captions

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, …
11 images  captions 

3
ทำให้คำอธิบายภาพของ Wordpress ตอบสนอง
เว็บเพจนี้มีรูปภาพที่แทรกโดย Wordpress รหัสที่ใช้ในการแทรกภาพแรกคือ: [caption id="attachment_887" align="alignnone" width="604"] <a href="http://steven.doig.com.au/files/2013/06/Forest_Legacy_m.jpg"> <img class="size-large wp-image-887" alt="a Forest Legacy group" src="http://steven.doig.com.au/files/2013/06/Forest_Legacy_m-1024x681.jpg" width="1024" height="681" /> </a> a Forest Legacy group[/caption] ภาพนี้ควบคุมโดย CSS: #content .wp-caption a img { width: 614px; height: auto; } ฉันต้องการให้ภาพนี้ตอบสนองได้ดี ฉันได้แทรก CSS: @media (max-width:988px) { #content .wp-caption a img { width: 99.03225806%; …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.