Drupal:将分类术语名称转换为术语 ID

发布于 2024-08-31 00:31:51 字数 156 浏览 3 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开柳相依 2024-09-07 00:31:52

您没有展示如何使用参数链接到此视图,如果像这样: 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文