我有 Genesis 框架,将自定义页面设置为首页时遇到问题,
当设置为主页时,所有帖子不显示。
但是当作为页面访问它时,我会看到所有帖子。
哪里有问题??
<div class="content-sidebar-wrap">
<main class="content" role="main" itemprop="mainContentOfPage" itemscope="itemscope" itemtype="http://schema.org/Blog">
<div id="content_box">
<?php
$i=0;
wp_reset_query();
query_posts('posts_per_page=10&post_type=post');
if(have_posts() ) :
while(have_posts()) : the_post();
?>
<article class="latestPost excerpt <? if($i%2==0){?> first <? } ?>" itemscope="" itemtype="http://schema.org/BlogPosting">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" id="featured-thumbnail">
<div class="featured-thumbnail">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail(array('370','297'));
}
?>
</div>
</a>
<header>
<h2 class="title front-view-title" itemprop="headline">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_title(); ?>
</a>
</h2>
</header>
</article>
<?php
$i++;
endwhile;endif;
wp_reset_query();
?>
</div>
<?php add_action( 'genesis_after_content', 'genesis_get_sidebar' ); ?>
</main>
</div>