:: How to change wp cron to os cron job
+ add cron job on os cron
|
0 1 2 |
crontab -e # add a line like this: wget -q -O /dev/null http://yourhostname.tld/wp-cron.php?doing_wp_cron >/dev/null 2>&1 |
+ disable wp-cron
|
0 1 2 |
vi wp-config.php # add this line: define('DISABLE_WP_CRON', true); |
:: Links
+ Google
+ WPDaylyBits
