是否从索引页面上的帖子中调用图像?

时间:2015-01-24 作者:user123

我面临的一个问题是,我不明白我过去在WordPress主题首页上的帖子中对图像的称呼,其中显示了n个图像,并且有描述,用户可以动态更改图像。他想要什么都行。

我用什么编写代码。php文件

1 个回复
SO网友:Arshad Hussain

Use like this:

 <?php
 while ( have_posts() ): the_post();
    // Display post
    if ( have_posts() ): 
            the_post_thumbnail();     //call image that you set in featured image in each post on right sidebar of admin panel.
            the_content();            //call content
    endif;
 endwhile;
 ?>
结束

相关推荐

Change posts list Breadcrumb

我在“设置”>“阅读”>“文章”页面(名为“博客”的页面)中设置了一个自定义页面。这不是我的主页,但NavXT面包屑只显示“主页”。我希望它显示页面标题:“主页>博客”。我怎样才能做到这一点?