To disable WordPress Cron Jobs, place this in wp-config.php
:
define(\'DISABLE_WP_CRON\', true);
例如,要在Linux中使用cPanel调度cron作业。。。
This is the command you might run:
wget -q -O - http://www.your-domain.org/wp-cron.php?doing_wp_cron >/dev/null 2>&1
上述命令的结尾只会抑制任何输出。
只需选择在cPanel或SSH中设置cron作业的时间间隔,或者选择设置cron作业的方式,并使用上面的命令即可。
上面的命令告诉Linux服务器运行wp-cron
通过wget
, 这将触发wp-cron.php
脚本,以便在您的计划中而不是在每个页面视图中完成这项工作。这将减少服务器上的进程数量。
在进行此更改后,我立即注意到我的服务器负载有所不同。