您最好使用wordpress API:
function wp_register_cron_endpoint() {
register_rest_route( \'crons\', \'/run_cron\', array(
\'methods\' => \'GET\',
\'callback\' => \'run_crons\'
));
}
add_action( \'rest_api_init\', \'wp_register_cron_endpoint\' );
function run_crons(){
/*** Do whatever you want ***/
}
然后你可以打
http://example.com/crons/run_crons 您将A)根据wp\\u负载触发wp\\u cron,B)在函数中执行您想要的任何操作。