if ( file_exists( ABSPATH . 'wp-content/wp-config.php') ) {

/** The config file resides in ABSPATH */
require_once( ABSPATH . 'wp-content/wp-config.php' );

} elseif ( file_exists( dirname(ABSPATH) . '/wp-content/wp-config.php' ) && ! file_exists( dirname(ABSPATH) . '/wp-settings.php' ) ) {

/** The config file resides one level above ABSPATH but is not part of another install*/
require_once( dirname(ABSPATH) . '/wp-content/wp-config.php' );


wp-config dosyasının yerini dğeiştirmek için wp-load'da sadece bu kısımları mı dğeiştirmelyizi. Diğer kısımlarda yazan wp-configleri, /wp-content/wp-config.php yapmayacak mıyız?