如何在自定义views-view-fields.tpl.php中的<img src=""/>内打印图像字段

时间:2016-04-10 16:07:19

标签: drupal

我有新闻内容类型的视图 我超越了视图的模板网格样式输出 在Row样式输出中:views-view-fields.tpl.php覆盖除了图像字段之外的所有内容似乎都可以! 我使用print打印倾斜和描述以及所有其他东西      `$字段[&#39;字段名&#39;] - &gt;内容;

但打印$ fields [&#39; field_teamimage&#39;] - &gt;内容; &#34;类=&#34; IMG-respo&#34; alt =&#34; team img 1&#34;&gt; 什么也没显示!

如何在内部打印图像区域仅允许本地图像。在我的自定义views-view-fields.tpl.php中 我花了一整天的时间尝试和搜索没有结果 感谢

1 个答案:

答案 0 :(得分:0)

为此你需要覆盖已归档的模板文件Field Content: Images of property (ID: field_teamimage),之后你可以在那里添加img src,比如

<img class="img-responsive" alt="team img 1" src="<?php print file_create_url($row->_field_data['nid']['entity']->field_teamimage['und'][0]['uri']); ?>"/>

您甚至可以直接在src中添加图像src。