Drupal分类学

发布于 2024-08-27 04:39:39 字数 157 浏览 6 评论 0原文

我有几个不同的内容类型节点(视频、图片库、故事...),我想对它们进行分类并创建一个聚合这些节点的顶级页面。例如,顶级页面将具有与首页视图非常相似的预告片缩略图,但当然会针对该主题进行过滤(例如汽车和摩托车将有自己的页面等......)。

实现这一目标的最佳方法是什么?分类学?意见?

I have several different content type nodes (videos, image galleries, stories...) that I would like to categorize and create a top-level page that aggregates these nodes. So for example, the top-level page would have teaser thumbnails very similar to the front page view but of course filtered for that topic (like for instance automobiles, and motorcycles would have its own page, etc...).

What is the best way to accomplish this? Taxonomy? Views?

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

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

发布评论

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

评论(1

眼趣 2024-09-03 04:39:39

您将同时使用分类法和视图。

分类法将对内容进行分类,而视图将允许您根据需要配置显示。

一种可能性是具有分类术语的参数(例如,/path/path/taxonomy-term/index.htm),其中分类术语是传递的 URL 参数。这将过滤该术语的所有内容。

您也可以仅依赖分类系统,其中内容位于 /taxonomy/tid,但我认为您无法通过这种方式对输出进行太多控制。

您可能还想研究像 Taxonomy VTN 这样的模块来深入了解分类法列表:

http:// drupalmodules.com/module/taxonomy-vtn

有很多方法可以解决这个问题。就我个人而言,我会使用视图。

You would use both Taxonomy and Views.

Taxonomy would categorize the content, and Views would allow you to configure the display however you like.

One possibility is having an Argument of a taxonomy term, (example, /path/path/taxonomy-term/index.htm) where taxonomy term is a passed URL argument. This would filter all content to that term.

You could also just rely on the taxonomy system, where content resides at /taxonomy/tid, but I don't think you get much control of the output that way.

You may also want to look into a module like Taxonomy VTN for a drill down list of taxonomy:

http://drupalmodules.com/module/taxonomy-vtn

There are lots of ways to approach this. Personally, I would use Views.

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