wp_templating_constants() WordPress Function

The wp_templating_constants() function is used to set up the environment for template loading. It is used internally by the load_template() function. It is not intended to be called directly.

wp_templating_constants() #

Defines templating-related WordPress constants.


Source

File: wp-includes/default-constants.php

392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
function wp_templating_constants() {
    /**
     * Filesystem path to the current active template directory.
     *
     * @since 1.5.0
     */
    define( 'TEMPLATEPATH', get_template_directory() );
 
    /**
     * Filesystem path to the current active template stylesheet directory.
     *
     * @since 2.1.0
     */
    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', 'twentytwentytwo' );
    }
 
}


Top ↑

Changelog

Changelog
VersionDescription
3.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by the Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.