function fetch_movie_data_from_tmdb($imdb_id) { $api_key = 'YOUR_TMDB_API_KEY'; // ضع مفتاحك من TMDb هنا $url = "https://api.themoviedb.org/3/find/$imdb_id?api_key=$api_key&external_source=imdb_id"; $response = wp_remote_get($url); if (is_wp_error($response)) return false; $body = json_decode(wp_remote_retrieve_body($response), true); if (empty($body['movie_results'][0])) return false; $movie = $body['movie_results'][0]; $movie_id = $movie['id']; // الآن نجلب التفاصيل الكاملة للفيلم + الفيديوهات $details_url = "https://api.themoviedb.org/3/movie/$movie_id?api_key=$api_key&append_to_response=videos,credits"; $details_res = wp_remote_get($details_url); if (is_wp_error($details_res)) return false; $data = json_decode(wp_remote_retrieve_body($details_res), true); return $data; } function save_movie_auto_data($post_id) { if (get_post_type($post_id) !== 'post') return; $imdb_id = get_post_meta($post_id, 'imdb_id', true); if (!$imdb_id) return; // إذا كانت البيانات محفوظة مسبقاً، لا تعيد جلبها if (get_post_meta($post_id, 'movie_poster', true)) return; $data = fetch_movie_data_from_tmdb($imdb_id); if (!$data) return; update_post_meta($post_id, 'movie_title', $data['title']); update_post_meta($post_id, 'movie_overview', $data['overview']); update_post_meta($post_id, 'movie_poster', 'https://image.tmdb.org/t/p/w500' . $data['poster_path']); update_post_meta($post_id, 'movie_backdrop', 'https://image.tmdb.org/t/p/original' . $data['backdrop_path']); update_post_meta($post_id, 'movie_trailer', get_trailer_youtube($data['videos']['results'])); update_post_meta($post_id, 'movie_rating', $data['vote_average']); update_post_meta($post_id, 'movie_genres', implode(', ', array_column($data['genres'], 'name'))); update_post_meta($post_id, 'movie_language', $data['original_language']); update_post_meta($post_id, 'movie_release_date', $data['release_date']); } function get_trailer_youtube($videos) { foreach ($videos as $video) { if ($video['site'] === 'YouTube' && $video['type'] === 'Trailer') { return 'https://www.youtube.com/watch?v=' . $video['key']; } } return ''; } add_action('save_post', 'save_movie_auto_data');

موقع مشاهدة الأفلام

Caliban شاهد فيلم

التصنيف:

التقييم: /10

الوصف:

▶ مشاهدة الفيلم