You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
425 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
/**
* WordPress Cron 触发器
* 用于在开发环境中手动触发WordPress Cron任务
*/
// 设置WordPress环境
define('WP_USE_THEMES', false);
require_once('../../../wp-load.php');
// 检查是否有权限
if (!current_user_can('manage_options')) {
wp_die('您没有权限访问此页面');
}
// 触发WordPress Cron
wp_cron();
echo "WordPress Cron已触发请检查日志文件查看结果。";
?>