mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
Introduce WP_DEFAULT_THEME
git-svn-id: https://develop.svn.wordpress.org/trunk@13737 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -283,13 +283,21 @@ function wp_templating_constants( ) {
|
||||
*/
|
||||
define('STYLESHEETPATH', get_stylesheet_directory());
|
||||
|
||||
/**
|
||||
* Slug of the default theme for this install.
|
||||
* Used as the default theme when installing new sites.
|
||||
* @since 3.0.0
|
||||
*/
|
||||
if ( !defined('WP_DEFAULT_THEME') )
|
||||
define( 'WP_DEFAULT_THEME', 'twentyten' );
|
||||
|
||||
/**
|
||||
* Slug of the fallback theme for this install.
|
||||
* Will be used as the fallback if the current theme doesn't exist.
|
||||
* @since 3.0.0
|
||||
*/
|
||||
if ( !defined('WP_FALLBACK_THEME') )
|
||||
define( 'WP_FALLBACK_THEME', 'twentyten' );
|
||||
define( 'WP_FALLBACK_THEME', WP_DEFAULT_THEME );
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user