wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_templating_constants › WordPress Function
Since3.0.0
Deprecatedn/a
› wp_templating_constants ( No parameters )
Defined at: |
|
Codex: |
Defines templating-related WordPress constants.
Related Functions: wp_ssl_constants, wp_initial_constants, wp_transition_comment_status, ms_upload_constants, wp_cookie_constants
Source
function wp_templating_constants() {
/**
* Filesystem path to the current active template directory.
*
* @since 1.5.0
* @deprecated 6.4.0 Use get_template_directory() instead.
* @see get_template_directory()
*/
define( 'TEMPLATEPATH', get_template_directory() );
/**
* Filesystem path to the current active template stylesheet directory.
*
* @since 2.1.0
* @deprecated 6.4.0 Use get_stylesheet_directory() instead.
* @see get_stylesheet_directory()
*/
define( 'STYLESHEETPATH', get_stylesheet_directory() );
/**
* Slug of the default theme for this installation.
* Used as the default theme when installing new sites.
* It will be used as the fallback if the active theme doesn't exist.
*
* @since 3.0.0
*
* @see WP_Theme::get_core_default_theme()
*/
if ( ! defined( 'WP_DEFAULT_THEME' ) ) {
define( 'WP_DEFAULT_THEME', 'twentytwentyfive' );
}
}