Replies: 0
Hi
So below code will work in other plugin as well right ? i mean i need to add below code in another plugin, where my actual code works
You can use the template below to create a new cron action. In the example, the Cron Action would be called my_cronjob_action
function my_cronjob_action () {
} add_action('my_cronjob_action', 'my_cronjob_action');
You can create custom actions by editing this plugins cronjobs.php file. This file requires you to have an understanding of PHP, edit this file.
Thanks
Ahir