wp_templating_constants

函数
wp_templating_constants ( No parameters )

wp_templating_constants是一个函数,定义了WordPress主题模板中使用的一组常量。这些常量用于指定WordPress安装中各种资源的位置,如主题目录、插件目录和内容目录。

定义了与模板有关的WordPress常量。

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', 'twentytwentythree' );
	}

}

常见问题

FAQs
查看更多 >