您可以请求激活主题。您可以获取选项值的值template
和stylesheet
. 这个stylesheet
获取活动样式,如果用户使用子主题,这是一个好处。作为示例if ( \'my_theme\' === get_option( \'stylesheet\' ) ) ...
.
此外,您还可以将挂钩用于模板和样式表,也可以使用s small exmaple。
add_filter( \'option_template\', \'fb_theme\' );
add_filter( \'option_stylesheet\', \'fb_theme\' );
function fb_theme( $template = \'\' ) {
if ( \'my_theme\' === $template ) {
echo \'TRUE\';
}
return $template;
}