• Resolved bward

    (@bward)


    Hello!

    Can you confirm if this is one of your plugins cron events?

    mwp_update_public_keys

    Thanks so much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • @bward: I had the same question, so I dug through the plugin source myself and can confirm that it does indeed create the mwp_update_public_keys cron event (in init.php):

    
    // Public key updating cron.
    if (!wp_next_scheduled('mwp_update_public_keys')) {
        wp_schedule_event(time(), 'daily', 'mwp_update_public_keys');
    }
    
    Thread Starter bward

    (@bward)

    Thanks for the reply globalmatt! Sometimes it can be tough figuring this stuff out. Have a blessed day!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Please Identify This Cron Event’ is closed to new replies.