Mam galerię dołączoną do strony. Na tej stronie uruchamiam następujące zapytanie:
$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
)
);
Eksperymentowałem na kilka sposobów iz jakiegoś powodu nie mogę dostać załączników do zwrotu. Czy brakuje mi czegoś oczywistego?
Aktualizacja*
Dzięki Wokowi za wskazanie mi właściwego kierunku.
Okazuje się, że używałem „status” zamiast „post_status”. Kodeks wykorzystał „status” jako przykład w swoim kontekstowym objaśnieniu typu postu „załącznik”. Zamiast tego zaktualizowałem kodeks, tak aby zawierał odniesienie „post_status”. Prawidłowy kod wygląda następująco:
$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'
Dzięki!