Changes between Initial Version and Version 2 of Ticket #64157
- Timestamp:
- 10/28/2025 05:58:53 PM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #64157
- Property Keywords needs-patch added
-
Property
Milestone
changed from
Awaiting ReviewtoFuture Release
-
Ticket #64157 – Description
initial v2 1 1 The constant `DISABLE_WP_CRON` allows developers to [https://developer.wordpress.org/apis/wp-config-php/#disable-cron-and-cron-timeout prevent the triggering of loopback requests] to the `wp-cron.php` endpoint. 2 2 3 However, the constant does not prevent the `wp-cron t.php` endpoint from running events registered via the WP Cron API.3 However, the constant does not prevent the `wp-cron.php` endpoint from running events registered via the WP Cron API. 4 4 5 5 `DISABLE_WP_CRON` was introduced prior to the existence of WP-CLI, so the recommended method for executing jobs via real cron was to execute the script directly or use curl to call the endpoint.