2017-03-18 61 views
1

我正在嘗試在頁腳內顯示頁面的精選圖像。獲取Wordpress頁面精選圖像到頁腳。

我在我的footer.php中有以下代碼,但它沒有顯示任何內容。我是PHP /循環的新手。有任何想法嗎?

<?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> 

回答

3

要顯示它,請回顯get_the_post_thumbnail();

嘗試

<?php echo get_the_post_thumbnail($post->ID, 'full'); ?> 
+0

這完美地工作,謝謝 – ts123

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> 
0

試試這個下面的代碼

</div><!-- #main --> 

<div id="footer"> 
    <?=get_the_post_thumbnail($post->ID, 'full');?> 
</div> 

<div id="contact"> 
    <p>For information please contact ...</p> 
</div>