diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php index 2a07c1d4f0..1d9074bda2 100644 --- a/wp-includes/default-constants.php +++ b/wp-includes/default-constants.php @@ -288,7 +288,8 @@ function wp_templating_constants( ) { * Will be used as the fallback if the current theme doesn't exist. * @since 3.0.0 */ - define( 'WP_FALLBACK_THEME', 'twentyten' ); + if ( !defined('WP_FALLBACK_THEME') ) + define( 'WP_FALLBACK_THEME', 'twentyten' ); } ?>