Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好我想问一下是否可以获取字段的值(从drupal视图)并以某种方式在视图的标题中打印它(使用PHP代码)。我尝试了 dsm($page) 函数,但找不到该字段的正确变量。提前致谢。
您可以在标题中使用全局文本。并添加您需要的字段的替换令牌。希望这能解决您的问题。
在前面的部分中,您有主题信息:这将为您提供用于呈现您的视图的模板的名称(通常是 views-view.tpl.php,您也可以为特定视图创建其他模板)。在该模板中,您将找到这段代码:
<div class="view-content"> <?php print $rows; ?> </div>
dsm($rows) 你会找到你要找的东西。