From c7d3fdbb66eeeb5716639b4f43f9cac3d4b23248 Mon Sep 17 00:00:00 2001 From: Nonimart Date: Thu, 5 Jun 2025 14:03:30 +0200 Subject: [PATCH] FIX Replacing LIKE by = to avoid unwanted chantier querried --- single-artisans.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/single-artisans.php b/single-artisans.php index b2f830c..1a36525 100644 --- a/single-artisans.php +++ b/single-artisans.php @@ -139,7 +139,7 @@ $pageIcon = get_field('page_icon', get_queried_object_id()) ?? null; array( 'key' => 'artisan', 'value' => $post->ID, - 'compare' => 'LIKE' + 'compare' => '=' ) ) );