According to this question, it’s possible to turn on/off WP_DEBUG for specific sites on a multisite.

Is it possible to do this with a sub-directory multisite?

2 s
2

You can do this by adding some code to wp-config.php

$request_uri = $_SERVER['REQUEST_URI'];
$debug_dirs = array ('/debug-dir1/','/debug-dir2/'); // list of directories to turn on debugging
foreach ($debug_dirs as $debug_dir) {
    if (!strncmp($request_uri,$debug_dir,strlen($debug_dir))) {
        define('WP_DEBUG', true);
    } 
}
define('WP_DEBUG', false); // debug off by default

Leave a Reply

Your email address will not be published. Required fields are marked *