我创建了一个主题,在每个页面上使用一个特色图像。
在设置中,我将我的“帖子页面”设置为“新闻”。。。如何从“新闻”中获取要显示的特色图像?
以下内容将显示“我的帖子”页面的id:
<?php
$page_for_posts = get_option( \'page_for_posts\' );
echo $page_for_posts;
?>
所以我想这会显示我帖子页面的特色图片:
<?php
$page_for_posts = get_option( \'page_for_posts\' );
echo get_the_post_thumbnail($page_for_posts, \'large\');
?>
但是,不知怎么的,它没有:(我需要在循环中添加这个代码吗?
有什么想法吗?
谢谢Josh