function custom_elementor_query($query) {
$current_page_id = get_queried_object_id();
if (isset($current_page_id)) {
$tax_query = array(
array(
'taxonomy' => 'product_cat',
'field' => 'term_id',
'terms' => $current_page_id,
),
);
// กำหนด tax_query ไปยัง WP_Query
$query->set('tax_query', $tax_query);
}
}
add_action('elementor/query/my_custom_query', 'custom_elementor_query');