Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$textと$pathが変数の場合。l関数の書き方。例:$text = $term->name、、$path = taxonomy/term/'.$term->tid l関数の書き方。l($term->name,taxonomy/term/'.$term->tid)`を使用しました。動作しません。
$text = $term->name
$path = taxonomy/term/'.$term->tid
l($term->name,taxonomy/term/'.$term->tid
あなたはすべて正しくやっていますが、single quote. 次のコードをコピーして貼り付けてみてください
single quote
l($term->name, 'taxonomy/term/' . $term->tid);
アップデート:
l()関数がパス エイリアスを自動的に表示しなかった場合は、drupal_get_path_alias() を使用してパス エイリアスを取得できます。
l($term->name, drupal_get_path_alias('taxonomy/term/' . $term->tid));