我试图在页脚内显示页面的精选图像。
我的footer.php中有以下代码,但它根本没有显示任何内容。我是php / the循环的新手。有什么想法吗?
<?php
?>
</div><!-- #main -->
<div id="footer">
<?php get_the_post_thumbnail($post->ID, 'full'); ?>
</div>
<div id="contact">
<p>For information please contact ...</p>
</div>
</div><!-- #wrapper -->
<?php wp_footer(); ?>
</body>
</html>
答案 0 :(得分:3)
要显示它,请回显get_the_post_thumbnail();
尝试
<?php echo get_the_post_thumbnail($post->ID, 'full'); ?>
答案 1 :(得分:0)
您应该尝试以下代码。
<?php
?>
</div><!-- #main -->
<div id="footer">
<img src="<?php the_post_thumbnail_url( 'full' ); ?>" alt="">
</div>
<div id="contact">
<p>For information please contact ...</p>
</div>
</div><!-- #wrapper -->
<?php wp_footer(); ?>
</body>
</html>
答案 2 :(得分:0)
尝试下面的代码
</div><!-- #main -->
<div id="footer">
<?=get_the_post_thumbnail($post->ID, 'full');?>
</div>
<div id="contact">
<p>For information please contact ...</p>
</div>