Drupal6 - 从术语名称获取术语ID

发布于 2024-10-22 20:22:23 字数 88 浏览 1 评论 0原文


假设我有一个术语名称为“product”,术语 id 为“123”,如何使用术语名称“product”获取术语 id“123”?

谢谢

Hi
Suppose I have a term name called "product" and the term id is "123", how can I use the term name "product" to get the term id "123"?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

我一向站在原地 2024-10-29 20:22:23
$get_term = taxonomy_get_term_by_name('product');

$term_id = $get_term[0]->tid;

这应该对你有用。

$get_term = taxonomy_get_term_by_name('product');

$term_id = $get_term[0]->tid;

This should work for you.

怪异←思 2024-10-29 20:22:23

使用此函数

taxonomy_get_tid_by_name('product')

返回值是 array 。

use this function

taxonomy_get_tid_by_name('product')

return value is array .

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