获取任何图像wordpress的完整数据

时间:2013-10-09 10:46:22

标签: wordpress getimagedata

我想获取图像的完整数据。哪个以及我应该如何使用任何功能? 标题显示帖子的标题,但是想要显示的图像的标题。 我该怎么办?

1 个答案:

答案 0 :(得分:0)

这取决于您希望如何在帖子/页面中附加图片。

如果您浏览特色图片,下面的代码将为您提供帮助:

<?php if ( has_post_thumbnail()) : ?>
   <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
   <?php the_post_thumbnail(); ?>
   </a>
 <?php endif; ?>

感谢。