我正在尝试将我的帖子发布在另一个页面(博客)上,并将我的“主页”页面显示为我的首页。两个页面都有自己的模板分配给他们(家对家,博客对博客)。
在阅读设置中,我将首页设置为主页,将帖子页面设置为博客。但是当我访问 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-->