is_child_theme

函数
is_child_theme ( No parameters )
返回值
  • (bool) True if a child theme is in use, false otherwise.
定义位置
相关方法
switch_themedisplay_themewp_is_block_themedisplay_themesload_child_theme_textdomain
引入
3.0.0
弃用
-

is_child_theme: 这个函数检查当前主题是否是一个子主题。如果当前主题是一个子主题,它返回true,否则返回false。

是否在使用一个子主题。

function is_child_theme() {
	return ( TEMPLATEPATH !== STYLESHEETPATH );
}

常见问题

FAQs
查看更多 >