Fires after a WooCommerce system status tool has been executed.
$tool
Sortie :
@param array $tool Details about the tool that has been executed.
// Ajouter une fonction au hook action 'woocommerce_system_status_tool_executed'
add_action('woocommerce_system_status_tool_executed', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($tool) {
// Votre code ici
error_log('Hook woocommerce_system_status_tool_executed déclenché');
}
Chargement des actualités...