显示页面特色图像和帖子特色图像

时间:2016-02-24 作者:louisstephens

好吧,我遇到了一点障碍。我有一个页面,已设置为显示帖子(有自己的特色图片)。我尝试在循环中调用帖子的特色图像(这很有效),并单独调用页面的特色图像,但它仍然显示帖子的特色图像。有没有办法把两者都拉出来?

1 个回复
SO网友:Mridul Aggarwal

Wordpress循环函数取决于全局变量,所以在运行循环之前,您必须从页面获取数据。

一般来说,你应该能够做这样的事情-

$page_id = get_the_ID(); //this is important, we will use this later

while(have_posts()): the_post();
//do something with the post here

echo get_the_post_thumbnail( $page_id ); //this is the page featured image

//still displaying any post related data
endwhile;

相关推荐

当in_the_loop()为假时,何时以及为什么is_Single(‘my_cpt’)为真?

我正在使用模板系统的示例代码。此地址的页码:http://project.test/my_cpt/hello-post/.无法理解原因is_singular( \'my_cpt\' ) 是true 虽然in_the_loop() 是false.在页面模板中The Loop "E;“工程”:if ( have_posts() ) { while ( have_posts() ) { the_post(); ?>