根据索引页面上的内容类型,包含节点内容的自定义块
我是 drupal 的新手,想要将特定内容类型的内容显示到块中。为此,我正在创建自定义块。我正在使用 drupal 6。 在这个块中,我想显示图像的旋转横幅,其中图像将是可单击的,并且一些文本将显示在图像上
实际上我已经创建了内容类型banner_slideshow。现在我想在块中显示此内容类型的记录,
任何帮助都会被应用
I am new to drupal, and want to display content of a specific content type in to a block. For that I am creating custom block.I am using drupal 6.
In this block I want to display rotating banner of image in which image will be clickable and some text will be display on image
Actually I have created content type banner_slideshow. now I want to display records of this content type in a block
any help wil be appriciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为此,我建议使用 Views 和 视图幻灯片模块。创建所需的视图后,您可以使用视图幻灯片在块中显示一组旋转的内容。
请参阅示例。它看起来很相似,但您也可以将幻灯片放在一个块中。
要了解更多信息:
有关使用/主题化视图幻灯片的视频
查看幻灯片文档
查看文档
For this I would recommend using Views and the Views Slideshow module. After creating your deisred view, you can use Views Slideshow to display a rotating set of content in a block.
See an example. It will look similar but you can also place the slideshow in a block.
To learn more:
Video about using/theming Views Slideshow
Views Slideshow Documentation
Views Documentation
Laxman 是对的,使用视图可能更好。
您可以创建一个模块,并且可能不需要查询数据库,具体取决于您要检索的信息类型。
您需要指定该内容:
您使用图像模块吗?您是否将图像直接“粘贴”到节点的主体中? (基本上你想要的那些图像在哪里......)
Laxman is right, it's probably better to use Views.
You can create a module and you might not need to query the database, depends of what type of information you want to retrieve.
You need to specify that content:
Are you using an image module? are you "pasting" images directly into the node's body? (basically where are those images you want...)