
Wordpress Cron
wp-cron sometimes eat large server resources, depending on the application / plugins you use.
Here’s how to disable wp-cron:
edit wp-config.php file and add the following line of code
define (‘DISABLE_WP_CRON’, true);
wp cron Description
Run scheduled callbacks or spawn cron for all scheduled events.
Usage
<?php wp_cron() ?>
Return Values
(null)
When doesn’t need to run Cron.
* Cron is named after a unix program which runs unattended scheduled tasks.
Source File
wp_cron() is located in wp-includes/cron.php.


{ 0 comments… add one now }
Leave a Comment