wordpress 有没有获取图片标题的函数
我正在尝试从 Wordpress 中的图像中获取标题,但我找不到一个简单的函数来获取这些信息。
有人知道有办法得到这个吗?
谢谢
I'm trying to get the captions from images in Wordpress but I can't find an easy function to grab this bit of information.
Anyone know a way to get this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您想在帖子中获取标题,您可以在“the_post_thumbnail”标签内回显它。
您也可以使用相同的方法来显示图像描述。这是 WordPress 3.5 中更好的功能。
如果您需要设计标题或描述的样式,您可以将其包装在 div 中,如下所示。
希望有帮助。
If you are trying to get the caption while in a post you can echo it out inside your "the_post_thumbnail" tag.
You can also use the same method to show the image description. This is a little better feature in WordPress 3.5
If you need to style the caption or description you can wrap it in a div like below.
Hope that helps.
结果标题被存储为帖子摘录。因此,
如果您位于附件图像页面(主题中的 image.php)并且位于循环内,则会打印出标题。
Turns out captions are stored as post excerpts. So,
will print out the caption if you are on the attachment image page (image.php in your theme) and inside the Loop.
使用 WordPress 4.8,这个小家伙为我工作:
Using Wordpress 4.8, this little guy worked for me:
我正在使用这段代码,它工作正常。
I'm using this code, It works fine.
将其放在 single.php 文件的内部figure标签中
Put this inside figure tag of your single.php file