Hi,
It will be fixed in the next update. The quick fixing solution:
Find(Apearance>Theme Editor) /functions/interface/interface-ajax.php
Add 'post_status' => 'publish', under line 58:
The whole WP_Query should be:
$the_query = new WP_Query(array(
'posts_per_page' => $per_page,
'paged' => $paged,
'category__in' => $category,
'post_status' => 'publish',
'tax_query' => array(
array(
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => array('post-format-gallery')
)
)
));
Regards!
Bwsm – uiueux.com – Twitter – Facebook