我正在使用wp\\u schedule\\u event recursive函数。在该功能中,我创建了一封电子邮件,它可以正常工作。此函数每1小时启动一次。
function do_this_hourly() {
$to = \'[email protected]\';
$subject = \'Test my one hour job\';
$message = \'you received this message \';
mail( $to, $subject, $message, \'From: [email protected]\' . "\\r\\n" );
}
但是现在,我有一个外部php页面,需要每一小时刷新/加载/重新加载一次,而没有人将其加载到浏览器上
$link = "http://www.example.com/path/to/link/"
header(\'Location: \' . $link);
有人知道怎么做吗?