1

我正在尝试将我的帖子发布在另一个页面(博客)上,并将我的“主页”页面显示为我的首页。两个页面都有自己的模板分配给他们(家对家,博客对博客)。

在阅读设置中,我将首页设置为主页,将帖子页面设置为博客。但是当我访问 url.com/blog 时,它显示的模板与我的主页相同。我不确定为什么它不会显示我的两篇博客文章。

在我的 home.php 模板中,我有以下代码,这可能是问题吗?

<!-- Display featured images -->
    <?php 
        $args = array('post_type'=> 'page');
        query_posts( $args );
    ?>

<!-- Get featured images -->
    <div class="main-thumb left">
        <?php 
            if ( have_posts() ) {
                while ( have_posts() ) {
                    the_post(); 
            ?>
                <li>
                    <a href="<?php echo get_permalink(); ?>">
                        <div class="tint">
                            <div class="overlay caps">
                                <?php 
                                    echo(types_render_field("top-overlay", array("output"=>"html")));
                                ?>
                                <?php 
                                    echo(types_render_field("bottom-overlay", array("output"=>"html")));
                                ?>
                            </div> <!-- end .OVERLAY-->

                            <?php the_post_thumbnail(); ?>
                        </div> <!-- end .TINT-->
                    </a>
                </li>
        <?php
                } 
            } 
        ?>
    </div> <!-- end .MAIN-THUMB-->
4

1 回答 1

5

无论根据模板层次结构如何,home.php 都将用作主页:

  1. WordPress首先确定它是否有静态首页。如果已设置静态首页,则 WordPress 会根据页面模板层次结构加载该页面。

  2. 如果尚未设置静态首页,则 WordPress 会查找名为 home.php 的模板文件并使用它来生成请求的页面。

于 2013-08-12T21:31:05.470 回答