• Anonymous User 13716511

    (@anonymized-13716511)


    I have this code in functions.php.
    It is working fine on my test site but it isn’t running on my live site. Could there be something preventing crontal from working?
    add_action(‘cron_topvideo_insert_hook’, ‘cron_topvideo_insert’);
    if ( ! wp_next_scheduled( ‘cron_topvideo_insert_hook’ ) ) {
    wp_schedule_event( time(), ‘hourly’, ‘cron_topvideo_insert_hook’ );
    }
    function cron_topvideo_insert() {

    $insert_statement = “INSERT into…”;

    global $wpdb;

    //clear the wp_clear_page_cache

    $wpdb->query($insert_statement );

    https://www.ads-software.com/plugins/wp-crontrol/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘cron not running’ is closed to new replies.