Query folder not working anymore
-
Hi,
I use a query for images in a specific folder, but it’s not working anymore. What to change?
$query = new WP_Query([
‘post_status’ => ‘inherit’,
‘post_type’=> ‘attachment’,
‘post_mime_type’ =>array(
‘jpg|jpeg|jpe’ => ‘image/jpeg’,
‘gif’ => ‘image/gif’,
‘png’ => ‘image/png’,
),
‘orderby’ => ‘rand’,
‘posts_per_page’ => 5,
‘tax_query’ => array(
array(
‘taxonomy’ => ‘nt_wmc_folder’,
‘terms’ => array( ‘uitgelicht’ ),
‘field’ => ‘slug’,
‘include_children’ => true,
‘operator’ => ‘IN’,
),
)
]);
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Query folder not working anymore’ is closed to new replies.