ฉันมีแกลเลอรี่ที่แนบมากับหน้า ในหน้านั้นฉันกำลังเรียกใช้แบบสอบถามต่อไปนี้:
$events_gallery = new WP_Query( // Start a new query for our videos
array(
'post_parent' => $post->ID, // Get data from the current post
'post_type' => 'attachment', // Only bring back attachments
'post_mime_type' => 'image', // Only bring back attachments that are images
'posts_per_page' => '3', // Show us the first three results
'status' => 'inherit', // Inherit the status of the parent post
'orderby' => 'rand', // Order the attachments randomly
)
);
ฉันทดลองหลายวิธีแล้วด้วยเหตุผลบางอย่างฉันไม่สามารถรับสิ่งที่แนบมาเพื่อส่งคืนได้ ฉันขาดอะไรบางอย่างชัดเจนที่นี่?
ปรับปรุง *
ขอบคุณ Wok ที่ชี้ให้ฉันไปในทิศทางที่ถูกต้อง
ปรากฎว่าฉันใช้ "สถานะ" แทน "post_status" Codex ใช้ "สถานะ" เป็นตัวอย่างในคำอธิบายในบริบทของประเภทโพสต์ "ไฟล์แนบ" ฉันอัปเดต codex เพื่ออ้างอิง "post_status" แทน รหัสที่ถูกต้องมีดังนี้:
$events_gallery = new WP_Query( // Start a new query for our videos
array(
'post_parent' => $post->ID, // Get data from the current post
'post_type' => 'attachment', // Only bring back attachments
'post_mime_type' => 'image', // Only bring back attachments that are images
'posts_per_page' => '3', // Show us the first three results
'post_status' => 'inherit', // Attachments default to "inherit", rather than published. Use "inherit" or "any".
'orderby' => 'rand', // Order the attachments randomly
)
);
'post_status' => 'inherit'
Thanks!