Tue, 10/28/2008 - 20:17 — Soccer Dad (not verified)
For those of you trying to get Customize to work with WordPress MU, it appears the plugin is getting loaded too early, so the pluggable code has not been included yet. A hack to fix it is to include this line in customize.php above the existing includes:
This should allow you to activate and use the plugin. So far it seems to be working just fine with v2.6.3 of MU
This probably isn't the best way to solve the problem - more likely the init sections need to be delayed a bit beyond the current constant definition check in use
For those of you trying to
Tue, 10/28/2008 - 20:17 — Soccer Dad (not verified)For those of you trying to get Customize to work with WordPress MU, it appears the plugin is getting loaded too early, so the pluggable code has not been included yet. A hack to fix it is to include this line in customize.php above the existing includes:
require_once(ABSPATH . 'wp-includes/pluggable.php');
This should allow you to activate and use the plugin. So far it seems to be working just fine with v2.6.3 of MU
This probably isn't the best way to solve the problem - more likely the init sections need to be delayed a bit beyond the current constant definition check in use