我想在标题之前显示节点的标签类别,标题字段在界面中不可用,有没有办法在node.tpl.php或page.tpl.php中执行此操作(我赢了&t; t为此目的安装另一个像ds suite这样的模块。 PS:我希望在显示节点的任何地方都这样做。
答案 0 :(得分:1)
你可以:
if(arg(0)!='node'): if ($title ): print $title; endif; endif; //print title only if i am not on node pages
print $node->title
醇>
还有其他方法可以在自定义模块中执行此操作,这听起来效率更高,但如果这是一个小任务,我想编辑你的tpls是一个很好的解决方案
答案 1 :(得分:1)
$content
数组仅在node.tpl.php
中可用,而在page.tpl.php
中,您有一个已生成子项的$page
数组。