可以在主题函数中定义全局变量。php
global $mywidgets;
$mywidgets = false;
在模板零件中添加
global $mywidgets;
$mywidgets = true;
在函数中,您可以检查其是否设置为true:
function my_function(){
global $mywidgets;
$mywidgets = true;
if ($mywidgets){
// YES Your template part is loaded
}else{
// NO Your template part is not loaded
}
}