mirror of
https://gh.wpcy.net/https://github.com/mainwp/mainwp-custom-dashboard-extension-examples.git
synced 2026-05-26 14:24:00 +08:00
7 lines
258 B
PHP
7 lines
258 B
PHP
<?php
|
|
|
|
add_filter( 'mainwp_updatescheck_sendmail_at_time', 'mycustom_mainwp_updatescheck_sendmail_at_time', 10, 1 );
|
|
function myhook_mainwp_updatescheck_sendmail_at_time( $hour ) {
|
|
$hour = '12:00'; // send email notifactions after 12:00
|
|
return $hour;
|
|
}
|