列出链接到相应分类节点的分类术语
在 drupal 中,安装分类节点模块后,我可以创建一个解释分类术语的节点。效果很好。
现在,我想列出给定节点的分类术语,其中列表中的每个术语都是到该术语的节点的链接。
换句话说:
$listOfTaxonomyTerms = taxonomyTermsByNode($nodeID);
$linkToTaxonomyNode = TaxonomyNodeLinkByTerm($listOfTaxonomyTerms[0]);
in drupal, after installing the taxonomy node module, I can create a node explaining the taxonomy term. That's working fine.
Now, I would like to list the taxonomy terms of a giving node where each term of the list is a link to the node of that term.
In another words:
$listOfTaxonomyTerms = taxonomyTermsByNode($nodeID);
$linkToTaxonomyNode = TaxonomyNodeLinkByTerm($listOfTaxonomyTerms[0]);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很抱歉回答我自己的问题。它不适合评论文本区域。
我想我只需要提出问题就可以开始思考答案。
所以,我在 template.php 上做了一个函数。这会收集分类节点的 url,并与分类术语建立一些链接:
I'm sorry to answer my own question. It wouldn't fit the comment text area.
I guess I just needed to make the question to start thinking about the answer.
So, I made a function on template.php. This collects the urls to the taxonomy nodes and makes some links with the taxonomy terms: