我正在设计一个壁纸网站。在每个帖子中,只有一个独特的图片,我试图获取与该图像相关联的附件ID。
获取帖子内容的代码:
<?php the_content( __( 'Continue Reading' , 'nuntius' ) . ' »'); ?>
我可以获取缩略图图片的链接,但不能获取完整图片的链接。
有没有这样做?
答案 0 :(得分:0)
<?php the_post_thumbnail( 'full' ); ?>
返回完整的缩略图图像。
如果你想要图像网址,那么你可以使用<?php the_post_thumbnail_url( 'full' ); ?>
让我知道这是否有帮助。
答案 1 :(得分:0)
https://codex.wordpress.org/Function_Reference/get_post_thumbnail_id 我认为这对你有帮助或许可以描述你想要的东西