Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action( 'wp', 'prefix_setup_schedule' );
- /**
- * Em um gancho de ação inicial, verifica se ele está agendado - caso contrário, agende-o.
- */
- function prefix_setup_schedule() {
- if ( ! wp_next_scheduled( 'prefix_hourly_event' ) ) {
- wp_schedule_event( time(), 'hourly', 'prefix_hourly_event');
- }
- }
- add_action( 'prefix_hourly_event', 'prefix_do_this_hourly' );
- /**
- * No gancho de ação agendado, execute uma função.
- */
- function prefix_do_this_hourly() {
- wp_mail(
- 'Automatic mail',
- 'Hello, this is an automatically scheduled email from WordPress.'
- );
- }
Advertisement
Add Comment
Please, Sign In to add comment