WordPress has a constant DOING_CRON
that helps us know we’re doing the cron jobs or not. It’s defined in wp-cron.php
file.
So, you can check this constant in your code:
1 2 3 4 | if ( defined( 'DOING_CRON' ) ) { // Do something } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.