Dopo aver aggiunto la costante in wp-config.php
defined('DISABLE_WP_CRON') or define('DISABLE_WP_CRON', true);
E supponendo che tu abbia config.yml
configurato correttamente, puoi ommettere il --path
flag quando chiami cron run
.
wp cron event run --due-now
[<hook>…]
Uno o più ganci da eseguire.
[--due-now]
Esegui subito tutti gli hook previsti.
[--all]
Esegui tutti i ganci.
Per eseguire tutte le attività cron dovute in ordine:
function run_crons_due_now_in_order { for SITE_URL in $(wp site list --fields=url --format=csv | tail -n +2 | sort); do wp cron event run --due-now --url="$SITE_URL" && echo -e "\t+ Finished crons for $SITE_URL"; done; echo "Done"; }; run_crons_due_now_in_order;
Se vuoi che vengano eseguiti contemporaneamente (eseguendo prima il cron non specifico del sito):
function run_all_crons_due_now { for SITE_URL in $(wp site list --fields=url --format=csv | tail -n +2 | sort); do wp cron event run --due-now --url="$SITE_URL" && echo -e "\t+ Finished crons for $SITE_URL" & done; wait $(jobs -p); echo "Done"; }; run_all_crons_due_now;
Vorresti mettere entrambe le opzioni in un file eseguibile
chmod +x run_all_wp_cron_events_due_now.sh
aggiungere un'attività crontab
crontab -e
e probabilmente eseguire ogni minuto
* * * * * run_all_wp_cron_events_due_now.sh > /dev/null
Se si desidera eseguire un comando personalizzato da cron, potrebbe essere necessario specificare i percorsi completi per far funzionare wp-cli .
* * * * * cd /home/username/public_html; /usr/local/bin/php /home/username/wp-cli.phar your-custom-cron-commands run >/dev/null 2>&1
PHP
L'unico motivo per cui dovresti caricare WordPress qui è raccogliere gli URL dal database anziché utilizzare un elenco predefinito. Faremo solo il ping di quegli URL e non ci interessa davvero quale sia la risposta.
custom-cron.php
<?php
// Load WP
require_once( dirname( __FILE__ ) . '/wp-load.php' );
// Check Version
global $wp_version;
$gt_4_6 = version_compare( $wp_version, '4.6.0', '>=' );
// Get Blogs
$args = array( 'archived' => 0, 'deleted' => 0, 'public' => 1 );
$blogs = $gt_4_6 ? get_sites( $args ) : @wp_get_sites( $args ); // >= 4.6
// Run Cron on each blog
echo "Running Crons: " . PHP_EOL;
$agent = 'WordPress/' . $wp_version . '; ' . home_url();
$time = time();
foreach ( $blogs as $blog ) {
$domain = $gt_4_6 ? $blog->domain : $blog['domain'];
$path = $gt_4_6 ? $blog->path : $blog['path'];
$command = "http://" . $domain . ( $path ? $path : '/' ) . 'wp-cron.php?doing_wp_cron=' . $time . '&ver=' . $wp_version;
$ch = curl_init( $command );
$rc = curl_setopt( $ch, CURLOPT_RETURNTRANSFER, false );
$rc = curl_exec( $ch );
curl_close( $ch );
print_r( $rc );
print_r( "\t✔ " . $command . PHP_EOL );
}
E aggiungi una sola chiamata al tuo custom-cron.php
in un crontab
* * * * * wget -q -O - http://your-site.com/custom-cron.php?doing_wp_cron
WP-CLI
codice principale?