This plugin can run triggers in three different ways. Here’s how to decide which option fits you best:
1. None
Choose this if you only want to run triggers manually (from the plugin dashboard).
- Nothing happens automatically.
- Good for testing or if you rarely need triggers to run.
2. WordPress Cron (WP-Cron) (recommended for most users)
Best if you don’t have server access or just want something simple.
- Triggers run when visitors load your site.
- On a busy site, they’ll run close to schedule.
- On a site with low traffic, runs may be delayed.
- No technical setup needed — just select it and save.
3. External Cron (WP-CLI or server cron job) (best for precision)
Best if you need exact scheduling (e.g. every 5 minutes on the dot).
- Requires access to your hosting control panel (like cPanel, Plesk) or to your server.
- You (or your host) create a cron job that calls WordPress automatically.
- This method ensures triggers run exactly when planned.
Example command (every minute):
* * * * * php /path/to/wordpress/wp-cli.phar --path=/path/to/site wp neurocontent run
Important:
- Not all hosting providers allow cron jobs.
- Make sure the plugin stays active.
- If you’re not sure how to add a cron job, ask your hosting provider or search for:
“How to add a cron job in [your hosting name]”.
Quick Decision Guide
- Beginner or low-traffic site? → Use WP-Cron.
- Need precise timing (e.g. every X minutes exactly)? → Use External Cron.
- Just testing? → Use None and run manually.