如何在 WordPress 中将图像导入为 HTML 列表?
我的问题很简单:是否可以在帖子中一次导入许多图像(例如图库),但例如在
内? 我认为图库导入是在帖子中导入一组图像的唯一方法,但在这种情况下我无法处理 HTML。 我可能是错的,但我没有找到任何相关信息。感谢您的帮助。My question is very simple: Is it possible to import many images at once in a post (such as the gallery does) but inside a <ul>
for instance ?
The gallery import is, I think, the only way to import a group of images inside a post, but I can't handle the HTML in this case.
I can be wrong, but I didn't find anything about that. Thank you for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将图像插入图库中,而无需将其导入帖子中。然后,在单个帖子模板中,您可以查询帖子附加的图像以显示它们。
附件只是附加到帖子上的帖子,所以让我们使用 get_posts():
我建议将此函数放在functions.php 文件中。
在您的 single.php 文件中:
WP Codex 链接:
You can insert your images in the gallery without importing it into your post. Then, in the single post template, you can query the images attached to the post to display them.
Attachments are just posts attached to a post, so let’s use get_posts():
I suggest to place this function in the functions.php file.
In your single.php file:
WP Codex links: