你能告诉我如何将我自己的文本/css样式添加到这个PHP代码中吗?
.l( $term->name, 'taxonomy/term/'.$term->tid, array('title' => $term->name )).
PHP 代码会生成一个指向该类别的链接,我需要添加它。
感谢您的回复。
所有代码看起来像:
<?php
$vid = 59;
function termSort($a, $b) {return strcmp($a->name, $b->name);}
$terms = taxonomy_get_tree($vid);
print usort ($terms,'termSort');
foreach ($terms as $term) {
if ($term->depth == 1)
{
print "Travel Insurance to" .l( $term->name, 'taxonomy/term/'.$term->tid, array('title' => $term->name)). " - Order Cheap Flights";
}
}
?>