Drupal 6:主题化视图中的字段
基本上我想在我的模板(views-view-field--body.tpl.php)中创建一个php代码,它会说以下内容...
if [body] 打印[节点视图] 恩迪夫
Basically I want to create a php code in my template (views-view-field--body.tpl.php) that would say the following...
if [body]
print [node_view]
endif
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在我的脑海中,乍一看似乎您正在使用字段。如果是这样,如果您查看views-view-field.tpl.php,注释会指定:
从 $row 获取输出时,应使用此构造:
$data = $row->{$field->field_alias}
因此你可以这样做
Off the top of my head and at first look it seems like you are using fields. If it is so, if you look at views-view-field.tpl.php, the comments specify:
When fetching output from the $row, this construct should be used:
$data = $row->{$field->field_alias}
thus you could do something like
我所做的就是下载 Views Custom Field ,然后使用以下代码作为值:
What I did to do this was download Views Custom Field and then use this code for the value: