TỔNG QUAN
Quỹ Căn VIP Chính chủ bán biệt thự song lập Đông Nam 186m2 khu Tulip 4 (TL04-03) giá 16,9 tỷ">Quỹ Căn VIP Chính chủ bán biệt thự song lập Đông Nam 186m2 khu Tulip 4 (TL04-03) giá 16,9 tỷ
function mts_bds_filter_query($query) { if (is_admin() || !$query->is_main_query()) { return; } // Chỉ áp dụng logic khi tìm kiếm CPT bat_dong_san ngoài Frontend if (isset($_GET['post_type']) && $_GET['post_type'] == 'bat_dong_san') { $tax_query = array('relation' => 'AND'); $meta_query = array('relation' => 'AND'); // Lọc theo Dự án (Taxonomy) if (!empty($_GET['du_an_filter']) && $_GET['du_an_filter'] != '0') { $tax_query[] = array( 'taxonomy' => 'du_an', 'field' => 'slug', 'terms' => sanitize_text_field($_GET['du_an_filter']), ); } // Lọc theo Loại hình (Taxonomy) if (!empty($_GET['loai_hinh_filter']) && $_GET['loai_hinh_filter'] != '0') { $tax_query[] = array( 'taxonomy' => 'loai_hinh', 'field' => 'slug', 'terms' => sanitize_text_field($_GET['loai_hinh_filter']), ); } // Lọc theo Hướng nhà (ACF Meta Field) if (!empty($_GET['huong_filter'])) { $meta_query[] = array( 'key' => 'huong_nha', 'value' => sanitize_text_field($_GET['huong_filter']), 'compare' => '=' ); } if (count($tax_query) > 1) { $query->set('tax_query', $tax_query); } if (count($meta_query) > 1) { $query->set('meta_query', $meta_query); } } } add_action('pre_get_posts', 'mts_bds_filter_query');