/* Add any custom values between this line and the "stop editing" line. */ // Action Scheduler: automatisch abgeschlossene Jobs nach 7 Tagen löschen // Verwendet einen festen Sekundenwert, damit keine undefinierte Konstante verwendet wird. if ( ! defined( 'ACTION_SCHEDULER_RETENTION_PERIOD' ) ) { define( 'ACTION_SCHEDULER_RETENTION_PERIOD', 7 * 24 * 60 * 60 ); } // Debug-Einstellungen – Logging an, Anzeige im Frontend aus define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false); @ini_set('display_errors', 0); /* That's all, stop editing! Happy publishing. */ // Absolute path to the WordPress directory if ( ! defined('ABSPATH') ) { define('ABSPATH', __DIR__ . '/' ); } // Set up WordPress vars and included files require_once ABSPATH . 'wp-settings.php';