関数 wp_templating_constants()
各種テンプレートの為の定数の定義
定義ファイル :/blog/wp-includes/default-constants.php
wp_templating_constants()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | /** * Defines templating related WordPress constants * * @since 3.0.0 */ 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 install. * Used as the default theme when installing new sites. * Will be used as the fallback if the current theme doesn't exist. * @since 3.0.0 */ if ( !defined('WP_DEFAULT_THEME') ) define( 'WP_DEFAULT_THEME', 'twentyfourteen' ); } |