How Can Help You in This Cron JOB Code?
I have created this Cron Job for my website with postype TVShows,Seasons,Episodes and It correctly get season, then generate it and its been publish but when the time call of its exisiting seasons episodes come it does not generate and publish? Can you any bestie help me out to fix this issue?
`// Step 1: Register a custom one-minute interval for testing
add_filter('cron_schedules', 'custom_one_minute_cron_schedule');
function custom_one_minute_cron_schedule($schedules) {
$schedules['every_minute'] = array(
'interval' => 60, // 60 seconds
'display' => __('Every Minute')
);
return $schedules;
}
// Step 2: Schedule the Cron Job to Run Every Minute (For testing purposes)
if (!wp_next_scheduled('auto_generate_new_seasons')) {
wp_schedule_event(time(), 'every_minute', 'auto_generate_new_seasons');
}
// Step 3: Define the Callback Function to Generate New Seasons and Episodes
add_action('auto_generate_new_seasons', 'generate_new_seasons');
function generate_new_seasons() {
global $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++; } }
}
// Step 4: Generate Episodes for a Season
function generate_episodes($tmdb_id, $season_number, $season_post_id) {
global $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++; }
}
// Step 5: Clean up and reset cron job schedule after testing
add_action('init', function() {
if (defined('WP_DEBUG') && WP_DEBUG) {
// Remove existing cron schedule to reset it
$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'); }
});
`
The above is the detailed content of How Can Help You in This Cron JOB Code?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

Using preprocessing statements and PDO in PHP can effectively prevent SQL injection attacks. 1) Use PDO to connect to the database and set the error mode. 2) Create preprocessing statements through the prepare method and pass data using placeholders and execute methods. 3) Process query results and ensure the security and performance of the code.

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.
