You are here

Notice:undefined variable: title in include(....block.tpl.php)

g089h515r806 的头像
Submitted by g089h515r806 on 星期六, 2011-04-02 12:25

Notice:undefined variable: title in include(....block.tpl.php)

从一个第3方主题里面拷贝过来的代码,它的里面有title变量,而Drupal自己没有提供这个变量.把这个变量替换为$block->subject.
代码如下:
 
<?php print render($title_prefix); ?>
 
<?php if ($block->subject): ?>
   
<h2<?php print $title_attributes; ?>>
<?php print $block->subject; ?></h2>
 
<?php endif; ?>
 
<?php print render($title_suffix); ?>

错误提示消失,新的区块模板,首先是地位降低了,核心主题里面没有了自己的block模板,其次显示一个变量的时候,需要使用render函数,后在在其它地方也是如此。