1
在我的WordPress博客頁面(home.php)模板上,我試圖在頂部顯示爲該頁面設置的精選圖像,然後是內容存檔網格。但是,不是顯示我爲頁面設置的精選圖片,而是顯示第一篇博文的精選圖片。另外(相關),如果我刪除第一篇博文的精選圖片,它會在內容存檔頁面上使用另一篇文章圖片。我猜這兩個問題是相關的,但我不確定。任何幫助,將不勝感激。博客頁面精選圖像被博客文章覆蓋精選圖像
這裏我把我的functions.php代碼
//Add featured images
add_action('genesis_before_content_sidebar_wrap', 'ws_post_image', 8);
function ws_post_image() {
global $post;
wp_reset_postdata();
echo the_post_thumbnail($post->id); /*you can use medium, large or a custom size */
}
謝謝你的幫助! – DanL