FIX Showing only published revues
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2025-10-09 12:13:49 +02:00
parent ef8beae99f
commit 1448e47f15
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@ $query = new WP_Query(array(
'orderby' => 'date',
'order' => 'DESC',
'offset' => 1,
'post_status' => 'publish',
));

View File

@ -4,6 +4,7 @@ $query = new WP_Query(array(
'orderby' => 'date',
'order' => 'DESC',
'offset' => 1,
'post_status' => 'publish',
));