我创建了一个显示分类的视图。现在我想以编程方式在分类法名称之前放置一个href标记。我所做的就是这个
<?php
// $Id$
/**
* @file
* Museum
*/
function museum_views_pre_render(&$view) {
if ($view->name == 'museumlist')
{
//var_dump($view);
foreach ($view->result as $result) {
$childern=taxonomy_get_children($result->tid);
//var_dump($result);
// Replace all empty fields with the dash '-' character.
$result->taxonomy_term_data_name='<a href="google.com">'.$result->taxonomy_term_data_name.'</a>';
}
}
}
因此,例如,我想将taxonomy_term_data_name链接到google.com,例如,如果它没有子项。 如何实现这个
答案 0 :(得分:0)
我会从view的模板文件中找到它。在高级/主题信息中,检查您必须更改哪个视图模板,甚至在那里获取默认内容。