此 Cron 作业代码如何为您提供帮助?
我使用 postype TVShows、Seasons、Episodes 为我的网站创建了此 Cron 作业,它正确获取季节,然后生成它并发布,但当其现有季节的时间需要时它不会生成和发布剧集吗?有哪位好心人能帮我解决这个问题吗?
`// 第 1 步:注册自定义一分钟间隔进行测试
add_filter('cron_schedules', 'custom_one_month_cron_schedule');
函数 custom_one_month_cron_schedule($schedules) {
$schedules['every_month'] = array(
'间隔' => 60, // 60 秒
'显示' => __('每分钟')
);
返回 $schedules;
}
// 第 2 步:安排 Cron 作业每分钟运行一次(用于测试目的)
if (!wp_next_scheduled('auto_generate_new_seasons')) {
wp_schedule_event(time(), 'every_month', 'auto_generate_new_seasons');
}
// 第 3 步:定义回调函数以生成新的季节和剧集
add_action('auto_generate_new_seasons', 'generate_new_seasons');
函数generate_new_seasons() {
全局 $wpdb;
// Query to get all TMDb IDs of existing TV shows from post meta $tmdb_ids = $wpdb->get_col("SELECT DISTINCT meta_value FROM {$wpdb->postmeta} WHERE meta_key = 'ids'"); foreach ($tmdb_ids as $tmdb_id) { // Check if the TV show exists in the 'tvshows' custom post type $tv_show_posts = get_posts(array( 'post_type' => 'tvshows', 'meta_key' => 'ids', 'meta_value'=> $tmdb_id, 'posts_per_page' => 1, // Only need one result )); // If TV show does not exist, skip to the next TMDb ID if (empty($tv_show_posts)) { continue; } // If the TV show is found, process it foreach ($tv_show_posts as $post) { // First, check if the 'clgnrt' meta is already set to avoid duplicate generation $clgnrt = get_post_meta($post->ID, 'clgnrt', true); if (!$clgnrt) { // Set the 'clgnrt' meta to '1' for the TV show to avoid regenerating it update_post_meta($post->ID, 'clgnrt', '1'); } } // Now check for and import new seasons for each TMDb ID $existing_seasons = $wpdb->get_col($wpdb->prepare( "SELECT meta_value FROM {$wpdb->postmeta} WHERE post_id IN ( SELECT post_id FROM {$wpdb->postmeta} WHERE meta_key = 'ids' AND meta_value = %s ) AND meta_key = 'temporada'", $tmdb_id )); $season = 1; while ($season) { // Skip seasons that already exist (duplicate check) if (in_array($season, $existing_seasons)) { $season++; continue; } // Fetch season data from TMDb API $response = wp_remote_get("https://api.themoviedb.org/3/tv/$tmdb_id/season/$season", array( 'body' => array( 'api_key' => 'YOUR_TMDB_API_KEY', 'language' => 'en-US', 'append_to_response' => 'images' ) )); if (is_wp_error($response) || wp_remote_retrieve_response_code($response) != 200) { break; } $json_tmdb = json_decode(wp_remote_retrieve_body($response), true); // If no season data is found, break the loop if (!isset($json_tmdb['season_number'])) { break; } // Create a new season post $post_data = array( 'post_status' => 'publish', 'post_title' => $json_tmdb['name'] . ': Season ' . $json_tmdb['season_number'], // Season Title: "Show Name: Season 1" 'post_content' => $json_tmdb['overview'], 'post_type' => 'seasons', ); $post_id = wp_insert_post($post_data); if (!is_wp_error($post_id)) { // Add meta data for the new season add_post_meta($post_id, 'ids', $tmdb_id); add_post_meta($post_id, 'temporada', $json_tmdb['season_number']); add_post_meta($post_id, 'air_date', $json_tmdb['air_date']); add_post_meta($post_id, 'dt_poster', $json_tmdb['poster_path']); // Update the 'clgnrt' meta for seasons to avoid regeneration update_post_meta($post_id, 'clgnrt', '1'); // Generate episodes for the new season generate_episodes($tmdb_id, $season, $post_id); } $season++; } }
}
// 第 4 步:生成一季的剧集
函数generate_episodes($tmdb_id, $season_number, $season_post_id) {
全局 $wpdb;
// Check if the episodes for this season already exist $existing_episodes = $wpdb->get_col($wpdb->prepare( "SELECT meta_value FROM {$wpdb->postmeta} WHERE post_id IN ( SELECT post_id FROM {$wpdb->postmeta} WHERE meta_key = 'temporada' AND meta_value = %s ) AND meta_key = 'episodio' ", $season_number )); $episode_number = 1; while ($episode_number) { // Skip episodes that already exist (duplicate check) if (in_array($episode_number, $existing_episodes)) { $episode_number++; continue; } // Fetch episode data from TMDb API $response = wp_remote_get("https://api.themoviedb.org/3/tv/$tmdb_id/season/$season_number/episode/$episode_number", array( 'body' => array( 'api_key' => 'YOUR_TMDB_API_KEY', 'language' => 'en-US', 'append_to_response' => 'images' ) )); if (is_wp_error($response) || wp_remote_retrieve_response_code($response) != 200) { break; } $json_tmdb = json_decode(wp_remote_retrieve_body($response), true); // If no episode data is found, break the loop if (!isset($json_tmdb['episode_number'])) { break; } // Create a new episode post $post_data = array( 'post_status' => 'publish', 'post_title' => $json_tmdb['name'] . ' ' . $season_number . 'x' . $episode_number, // Episode Title: "Show Name: 1x1" 'post_content' => $json_tmdb['overview'], 'post_type' => 'episodes', ); $episode_post_id = wp_insert_post($post_data); if (!is_wp_error($episode_post_id)) { // Add meta data for the new episode add_post_meta($episode_post_id, 'ids', $tmdb_id); add_post_meta($episode_post_id, 'temporada', $season_number); add_post_meta($episode_post_id, 'episodio', $json_tmdb['episode_number']); add_post_meta($episode_post_id, 'air_date', $json_tmdb['air_date']); add_post_meta($episode_post_id, 'dt_poster', $json_tmdb['still_path']); // Update the 'clgnrt' meta for episodes to avoid regeneration update_post_meta($episode_post_id, 'clgnrt', '1'); } $episode_number++; }
}
// 第 5 步:测试后清理并重置 cron 作业计划
add_action('init', function() {
if (已定义('WP_DEBUG') && WP_DEBUG) {
// 删除现有的 cron 计划以重置它
$timestamp = wp_next_scheduled('auto_generate_new_seasons');
if ($timestamp) {
wp_unschedule_event($timestamp, 'auto_generate_new_seasons');
}
}
// Re-schedule the cron job to run hourly instead of every minute for production if (!wp_next_scheduled('auto_generate_new_seasons')) { wp_schedule_event(time(), 'hourly', 'auto_generate_new_seasons'); }
});
`
以上是此 Cron 作业代码如何为您提供帮助?的详细内容。更多信息请关注PHP中文网其他相关文章!

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

在PHP中,应使用password_hash和password_verify函数实现安全的密码哈希处理,不应使用MD5或SHA1。1)password_hash生成包含盐值的哈希,增强安全性。2)password_verify验证密码,通过比较哈希值确保安全。3)MD5和SHA1易受攻击且缺乏盐值,不适合现代密码安全。

PHP和Python各有优势,选择依据项目需求。1.PHP适合web开发,尤其快速开发和维护网站。2.Python适用于数据科学、机器学习和人工智能,语法简洁,适合初学者。

PHP在电子商务、内容管理系统和API开发中广泛应用。1)电子商务:用于购物车功能和支付处理。2)内容管理系统:用于动态内容生成和用户管理。3)API开发:用于RESTfulAPI开发和API安全性。通过性能优化和最佳实践,PHP应用的效率和可维护性得以提升。

PHP类型提示提升代码质量和可读性。1)标量类型提示:自PHP7.0起,允许在函数参数中指定基本数据类型,如int、float等。2)返回类型提示:确保函数返回值类型的一致性。3)联合类型提示:自PHP8.0起,允许在函数参数或返回值中指定多个类型。4)可空类型提示:允许包含null值,处理可能返回空值的函数。

PHP仍然具有活力,其在现代编程领域中依然占据重要地位。1)PHP的简单易学和强大社区支持使其在Web开发中广泛应用;2)其灵活性和稳定性使其在处理Web表单、数据库操作和文件处理等方面表现出色;3)PHP不断进化和优化,适用于初学者和经验丰富的开发者。

PHP主要是过程式编程,但也支持面向对象编程(OOP);Python支持多种范式,包括OOP、函数式和过程式编程。PHP适合web开发,Python适用于多种应用,如数据分析和机器学习。

在PHP中使用预处理语句和PDO可以有效防范SQL注入攻击。1)使用PDO连接数据库并设置错误模式。2)通过prepare方法创建预处理语句,使用占位符和execute方法传递数据。3)处理查询结果并确保代码的安全性和性能。

PHP和Python各有优劣,选择取决于项目需求和个人偏好。1.PHP适合快速开发和维护大型Web应用。2.Python在数据科学和机器学习领域占据主导地位。
