У мене на сторінці додається галерея. На цій сторінці я виконую такий запит:
$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
)
);
Я експериментував досить багато способів, і я чомусь не можу отримати вкладення, щоб повернутися. Чи пропускаю я щось очевидне тут?
Оновити *
Дякую Воку, що вказував мене в правильному напрямку.
Виявляється, я використовував "статус" замість "post_status". Кодекс використав "статус" як приклад у своєму контекстному поясненні типу публікації "вкладення". Я оновив кодекс на посилання "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'
Спасибі!