haiku-atelier-2024/config/environments/staging.php
2024-08-05 23:28:28 +02:00

19 lines
467 B
PHP

<?php
/**
* Configuration overrides for WP_ENV === 'staging'
*/
declare(strict_types=1);
use Roots\WPConfig\Config;
/**
* You should try to keep staging as close to production as possible. However,
* should you need to, you can always override production configuration values
* with `Config::define`.
*
* Example: `Config::define('WP_DEBUG', true);`
* Example: `Config::define('DISALLOW_FILE_MODS', false);`
*/
Config::define("DISALLOW_INDEXING", true);