Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想获取图像的完整数据。我应该使用哪个以及如何使用任何功能?标题显示帖子的标题,但我希望显示图像的标题。我应该怎么办?
这取决于您希望如何在帖子/页面中附加图像。
如果您浏览精选图片,以下代码将为您提供帮助:
<?php if ( has_post_thumbnail()) : ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" > <?php the_post_thumbnail(); ?> </a> <?php endif; ?>
谢谢。