-4

你能告诉我如何将我自己的文本/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";
} 


}

?>
4

1 回答 1

1

如果我不得不完全猜测(因为我不知道函数 'l' 实际做了什么,但我可以根据类似的框架假设),我会说添加'style' => 'your custom css'到数组中以实现内联样式或'class' => 'your class'与样式表一起使用。

IE:

.l(  $term->name,  'taxonomy/term/'.$term->tid,   array('title' => $term->name, 'style' => 'color: red'  )).

如果您只是想向可点击链接添加单词,您可以编辑 $term->name 部分。

.l(  $term->name . "Your text here",  'taxonomy/term/'.$term->tid,   array('title' => $term->name  )).
于 2013-04-22T10:13:48.080 回答