Drupal:将分类术语名称转换为术语 ID
在我的 Drupal 视图之一中使用“分类:术语 ID”作为参数,但我无法使其正常工作。
在视图管理页面上,它指出,“如果使用术语名称,通常将其转换为术语 ID 并使用分类法:术语 ID 而不是分类法:术语名称更有效。”
如何将术语名称从 URL 转换为术语 ID?
Using 'taxonomy: term ID' as an argument in one of my Drupal views and I'm having trouble getting it to work correctly.
On the views administration page it states, "if using term name, it is generally more efficient to convert it to a term ID and use Taxonomy: Term ID rather than Taxonomy: Term Name."
How does one go about converting the term name from a URL into a term ID?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有展示如何使用参数链接到此视图,如果像这样: http://site.com/ views_page/taxonomy_name,然后:
arg(1) - 这是你的 term_name,通过以下方式获取 id:
$term =taxonomy_get_term_by_name(arg(1));
结果是
$term->tid
但如果 http://site.com/views_page/taxonomy_name - 是分类术语、视图的别名路径应该通过分类/术语/TID 路径中的 arg(2) 直接看到参数处理中的 TID。
you didn't show how do link to this views with agruments, if like this: http://site.com/views_page/taxonomy_name, then:
arg(1) - it's you term_name, get id via:
$term = taxonomy_get_term_by_name(arg(1));
result is
$term->tid
But if http://site.com/views_page/taxonomy_name - is aliased path to taxonomy terms, views should see directly tids in argument handling via arg(2) in taxonomy/term/TID path.