您可以获得有关子主题的此值。首先让你的孩子参加主题约会。最简单的方法是函数wp_get_theme()
, 看见codex 有关参数和更多信息。您将获得一个包含当前主题所有相关信息的对象。在第二步中,检查if是否是子主题,然后获取其父主题信息,如follow source。
// Current WP_Theme object.
// Get this data via hook or class WP_Theme
// As wrapper, simple to sue is the function wp_get_theme()
$theme_data = wp_get_theme();
$is_child = $this->is_child( $theme_data );
if ( $is_child ) {
$parent_name = $theme_data->parent()->Name;
}
方法
is_child
很简单:
function is_child( $theme_data ) {
// For limitation of empty() write in var
$parent = $theme_data->parent();
if ( ! empty( $parent ) ) {
return TRUE;
}
return FALSE;
}