如何在drupal首页的每个最近帖子中显示图像?
我对 drupal 很陌生。正如我在 drupal 首页上最近的帖子中看到的许多 drupal 免费主题可以显示图像一样,
我尝试搜索一些方法,但似乎我的关键字搜索不匹配。
I am very new to drupal. As I have seen many of drupal free theme can show image in the recent post on the first page of drupal
I tried searching some ways to do but seem my keyword search was mismatched.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您不想安装任何模块,则只需使用标准 HTML
标记将图像放入节点主体中(确保您选择的输入格式 允许使用该标签)。然后,您可以使用 FTP 将链接的图像上传到 /sites/default/files 目录。
Nikit 提到的模块(尤其是 IMCE)可以大大简化这个过程。最起码,IMCE 允许您在不使用 FTP 的情况下将文件上传到服务器,并在“正文”输入字段后添加一个方便的“插入图像”链接。单击该链接会上传您的图像,然后为您生成
代码。
If you don't want to install any modules, you can simply use a standard HTML
<img>
tag to put an image in your node body (make sure your selected Input Format allows for the use of that tag). You can then use FTP to upload the linked images to your /sites/default/files directory.The modules mentioned by Nikit (especially IMCE) can ease this process greatly. A the very minimum, IMCE allows you to upload files to your server without using FTP and adds a handy "insert image" link after your "body" input fields. Clicking that link uploads your image and then generates the
<img>
code for you.您可以简单地在节点主体中对其进行样式设置(wysiwyg + imce 可以帮助快速上传图像并对其进行样式设置)。
但建议您使用 image 或 cck + imagefield,并通过 node-{CONTENTTYPE}.tpl.php
这里没什么帮助:http://www.hankpalan。 com/blog/drupal-themes/theming-node-drupalthe-easy-way
但建议学习drupal中的主题化。
You can simply style it in node body (wysiwyg + imce can help to quickly upload image and style it).
But recommend to you use image or cck + imagefield, and theme it via node-{CONTENTTYPE}.tpl.php
Little help here: http://www.hankpalan.com/blog/drupal-themes/theming-node-drupalthe-easy-way
But recommend to learn theming in drupal.
如果您不想使用 HTML 或更改任何 PHP 文件,请使用管理控制台。
http://drupal.org/node/1047760
If you don't want to use HTML or change any PHP files then use the admin console.
http://drupal.org/node/1047760