/** * 前端自動檢測腳本(結合圖片攔截和縮圖通知) */ public function add_frontend_script() { // 只在首頁或包含 WPSL 的頁面載入 if (!$this->should_load_script()) { return; } // 提供 AJAX 參數和動態尺寸設定給 JavaScript wp_localize_script('jquery', 'wpsl_ajax', array( 'ajax_url' => admin_url('admin-ajax.php'), 'nonce' => wp_create_nonce('wpsl_generate_thumb'), 'fallback_enabled' => $this->fallback_enabled, 'listing_thumb_size' => $this->required_sizes['wpsl_listing']['width'] . 'x' . $this->required_sizes['wpsl_listing']['height'], 'info_window_thumb_size' => $this->required_sizes['wpsl_info_window']['width'] . 'x' . $this->required_sizes['wpsl_info_window']['height'] )); ?>