Oh oh! Page not found.
We're sorry, but the page you are looking for doesn't exist.
You can search your topic using the box below or return to the homepage.
/* ========================================================= * 6) Apply canonical chips (FINAL enforcement) * - We apply on save_post_property AND once again on shutdown * because Houzez/WP All Import may overwrite taxonomy later. * ========================================================= */ if ( ! function_exists('jh_city6_apply_terms') ) { function jh_city6_apply_terms(int $post_id): array { if (JH_CITY6_OFF) return []; if ( empty($post_id) || get_post_type($post_id) !== 'property' ) return []; if ( wp_is_post_revision($post_id) || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) ) return []; $tax = jh_city6_tax(); $map = jh_city6_map(); $allowed = array_keys($map); $hay = jh_haystack_from_address_meta($post_id); if ($hay === '') return []; $slugs = jh_city6_classify($hay); // array|null // If classify fails and non-canonical exists, wipe all $current_slugs = wp_get_post_terms($post_id, $tax, ['fields'=>'slugs']); $has_noncanonical = false; foreach ((array)$current_slugs as $cs) { if (!in_array((string)$cs, $allowed, true)) { $has_noncanonical = true; break; } } if (!$slugs || empty($slugs)) { if ($has_noncanonical) { wp_set_post_terms($post_id, [], $tax, false); } return []; } // sanitize & keep only allowed $slugs = array_values(array_unique(array_filter(array_map('sanitize_title', (array)$slugs)))); $slugs = array_values(array_filter($slugs, function($s) use ($allowed){ return in_array($s, $allowed, true); })); if (empty($slugs)) return []; $ids = jh_city6_ensure_terms(); $term_ids = []; foreach ($slugs as $s) { if (!empty($ids[$s])) $term_ids[] = (int)$ids[$s]; } $term_ids = array_values(array_unique(array_filter($term_ids))); if (empty($term_ids)) return []; // IMPORTANT: overwrite with exactly these terms wp_set_post_terms($post_id, $term_ids, $tax, false); return $slugs; // for debug } } add_action('save_post_property', function($post_id, $post, $update){ if (JH_CITY6_OFF) return; // 1) Apply now (early) $slugs = jh_city6_apply_terms((int)$post_id); // 2) Apply again at shutdown (FINAL) — strongest guarantee // Store PID list in global for this request. if (!empty($slugs)) { if (!isset($GLOBALS['jh_city6_shutdown_queue'])) $GLOBALS['jh_city6_shutdown_queue'] = []; $GLOBALS['jh_city6_shutdown_queue'][(int)$post_id] = 1; } }, 999, 3); add_action('shutdown', function(){ if (JH_CITY6_OFF) return; if (empty($GLOBALS['jh_city6_shutdown_queue'])) return; foreach (array_keys((array)$GLOBALS['jh_city6_shutdown_queue']) as $pid) { $pid = (int)$pid; if ($pid > 0 && get_post_type($pid) === 'property') { jh_city6_apply_terms($pid); } } }, 9999);
We're sorry, but the page you are looking for doesn't exist.
You can search your topic using the box below or return to the homepage.
매물 선택 비교
비교하기