獲取一個網頁(無後)的特色形象,我需要顯示所有的頁面,而不是帖子的特色照片。我有這樣的代碼:在WordPress的
<?php
if ((is_singular() || is_home()) && current_theme_supports('post-thumbnails')) : echo get_the_post_thumbnail('12', 'full'); ?>
<img src="<?php header_image(); ?>" class="header-img" alt="" />
<?php endif;?>
但是,這隻顯示一個特色圖像。
非常感謝!
所以,很顯然,你路過帖子ID'12'所以它會帶來該職位的特徵圖像。你在期待什麼? – Rikesh
一個在所有頁面功能圖像的循環,我知道我路過ID 12,但我怎麼能得到循環? – krathos
這可能是上http://wordpress.stackexchange.com/ – jontro