我创建了一个名为“plugin-1”的插件
Plugin Name :plugin-1
/*
*
*/
if ( wp_get_theme() == 'theme-1') {
//my plugin stuffs
}
我有主题&儿童主题称为“主题-1”:
Theme Name : theme-1
Theme URI : theme-uri
例如“theme-1-child”:
Theme Name : theme-1-child
问题是我想允许我所有的孩子主题访问插件“plugin-1”!! ..
案例是我的客户将创建自己的孩子,但我需要允许访问插件!!
我该怎么做?请帮助我!!
答案 0 :(得分:0)
试试这个:
if ( wp_get_theme() == 'theme-1' || wp_get_theme() == 'theme-1-child') {
//my plugin stuffs
}