我看过,但似乎找不到正确的答案,或者我没有这方面的技能。问题是我收到了这个错误:
Notice: Undefined variable: node in include() (line 69 of /home/xwebmedia/public_html/ltr/sites/all/themes/ltr/page.tpl.php).
我正在使用的代码是:
<?php
if (count($node->field_adds) != 0)
{
foreach($node->field_adds['und'] as $key => $value)
{
$nid = $value['nid'];
$mywidget = node_view(node_load($nid));
print drupal_render($mywidget);
}
}
?>
事情是一切正常,我在边栏中添加了我的小部件,但我收到了这个错误通知。
我知道我需要在其中定义一个变量,template.php
但我尝试了一些它不起作用的东西。
有什么建议么?