Setting Up a Cron Job for WordPress Scheduling

By default, WordPress runs background tasks on occasion when pages are visited. This can lead to scheduled posts appearing late. If you’d like to set up a real cron job for WordPress, do the following: crontab -e Add the line: */15 * * * * wget -q -O – http://yourdomain.com/wp-cron.php?doing_wp_cron >/dev/null 2>&1 Also, edit wp-config.php, and […]

Read More