diff --git a/src/wp-cron.php b/src/wp-cron.php
index 15c6676..25f0c0a 100644
--- a/src/wp-cron.php
+++ b/src/wp-cron.php
@@ -1,7 +1,15 @@
 <?php
 /**
- * WordPress Cron Implementation for hosts, which do not offer CRON or for which
- * the user has not set up a CRON job pointing to this file.
+ * WordPress Cron Implementation for hosts, which acts as a pseudo CRON daemon (for only WP scheduled tasks)
+ * that is triggered when the website receives a visit.
+ * You may call this file directly to manually trigger WP Cron to run.
+ * Calling thie file directly does not affect the visit-trigger method.
+ * 
+ * To ensure WP Cron runs a minimum of X number of times alongside the visit-trigger method,
+ * you can manually call this file directly or via server CRON daemon for X number of times. 
+ * You may also leave DISABLE_WP_CRON unset.
+ * 
+ * To replace WP Cron, set DISABLE_WP_CRON to true and manually call this file directly or via server CRON daemon.
  *
  * The HTTP request to this file will not slow down the visitor who happens to
  * visit when the cron job is needed to run.
