diff --git a/README.md b/README.md index 4ced364..6bcec25 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ - [TYPO3 scheduler](#typo3-scheduler) - [Drupal cron](#drupal-cron) - [Laravel cron](#laravel-cron) + - [WordPress cron](#wordpress-cron) ## Introduction @@ -117,8 +118,8 @@ Every minute, it writes the current time (UTC timezone) to `./time.log`. ```cron */15 * * * * IS_DDEV_PROJECT=true DDEV_PHP_VERSION=8.1 cd /var/www/html && /usr/local/bin/wp cron event run --due-now 2>&1 | tee -a /var/www/html/cron.log ``` -- This configuration will run the WordPress scheduler every 15 minutes and will create a `cron.log` file in the root of your project +- This configuration will run the WordPress scheduler every 15 minutes and will create a `cron.log` file in the root of your project **Contributed and maintained by [@tyler36](https://github.com/tyler36) based on the original [Running TYPO3 Cron inside the web container](https://github.com/ddev/ddev-contrib/tree/master/recipes/cronjob) by [@thomaskieslich](https://github.com/thomaskieslich)**