FIX Replacing LIKE by = to avoid unwanted chantier querried
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nonimart 2025-06-05 14:03:30 +02:00
parent 36f2ab65ea
commit c7d3fdbb66

View File

@ -139,7 +139,7 @@ $pageIcon = get_field('page_icon', get_queried_object_id()) ?? null;
array(
'key' => 'artisan',
'value' => $post->ID,
'compare' => 'LIKE'
'compare' => '='
)
)
);