• Resolved fpwordpress

    (@flaviowordpress)


    Hello, how can I remove these crons through functions.php (not plugin)?

    wpo_smush_clear_backup_images
    wpo_weekly_cron_tasks

    This code which I use for other crons has no effect:

    wp_clear_scheduled_hook( ‘wpo_smush_clear_backup_images’);

    Thank you.

Viewing 1 replies (of 1 total)
  • Hi there,

    Adding this to my current theme’s functions.php worked as expected, removing both cron events.

    wp_clear_scheduled_hook('wpo_weekly_cron_tasks');
    wp_clear_scheduled_hook('wpo_smush_clear_backup_images');

    Not sure why it’s not working for you…

    How do you check wether they’re there or not?

    Marc.

Viewing 1 replies (of 1 total)
  • The topic ‘Removing crons’ is closed to new replies.