Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #64157


Ignore:
Timestamp:
10/28/2025 05:58:53 PM (3 months ago)
Author:
westonruter
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #64157

    • Property Keywords needs-patch added
    • Property Milestone changed from Awaiting Review to Future Release
  • Ticket #64157 – Description

    initial v2  
    11The 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.
    22
    3 However, the constant does not prevent the `wp-cront.php` endpoint from running events registered via the WP Cron API.
     3However, the constant does not prevent the `wp-cron.php` endpoint from running events registered via the WP Cron API.
    44
    55`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.