这是我在一个静态主页模板上使用的代码的简化版本,该模板是为一个儿童主题212制作的。我简化了一些用于造型的div,只关注问题区域。
问题是,当我使用Chrome扩展查看html5大纲时,所有内容看起来都很好,除了特色漫画部分下面有2篇文章(应该只显示1篇)。一篇文章是为粘性文章准备的,一篇标记为“无标题文章”(点击后会给我粘性文章之后的下一篇文章的帖子ID,但没有显示任何内容),然后是另一个h3“副标题”条目。
我想在页面上保留多个循环,以便用户可以更新静态主页内容。我有没有遗漏什么东西来摆脱这篇虚构的无标题文章?
<?php get_header(); ?>
<div>
<?php while ( have_posts() ) : the_post();
get_template_part( \'content\', \'page\' );
endwhile; // end of the loop. ?>
</div><!—-for styling only-—>
<section>
<h2>Featured Comic</h2>
<?php $featured_comic = new WP_Query( array( \'posts_per_page\' => 1 ) );
if ( $featured_comic->have_posts() ) : while ( $featured_comic->have_posts() ) :
$featured_comic->the_post();
get_template_part( \'content-homefeatured\', get_post_format() );
endwhile; endif;
wp_reset_postdata(); ?>
<div>
<h3>Subheading<h3>
<div><!—-for styling only-—>
</section>
<section>
$recent_posts = new WP_Query( array( \'posts_per_page\' => 4 ) );
if ( $recent_posts->have_posts() ) : while ( $recent_posts->have_posts() ) :
$recent_posts->the_post(); ?>
<div class="box<?php if($count%2 == 0 ) {echo \'-1\'; }; $count++; ?>">
<?php get_template_part( \'content-homerecent\', get_post_format() ); ?>
</div><!—-for styling only-—>
<?php endwhile; endif;
wp_reset_postdata(); ?>
</section>
内容页:
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php if ( ! is_page_template( \'page-templates/front-page.php\' ) ) :
the_post_thumbnail();
endif; ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<div class="entry-content">
<?php the_content();
wp_link_pages( array(
\'before\' => \'<div class="page-links">\' . __( \'Pages:\', \'twentytwelve\' ),
\'after\' => \'</div>\' ) ); ?>
</div><!-- .entry-content -->
<footer class="entry-meta">
<?php edit_post_link( __( \'Edit\', \'twentytwelve\' ), \'<span class="edit-link">\', \'</span>\' ); ?>
</footer><!-- .entry-meta -->
</article><!-- #post -->
内容主页特色:
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( is_sticky() ) : ?>
<header class="entry-header">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail(); ?>
</a>
<?php echo do_shortcode(\'[shareaholic app="share_buttons" id="12345"]\'); ?>
</header><!-- .entry-header -->
<div class="entry-content">
<h1 class="entry-title">
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
</h1>
<?php the_excerpt(); ?>
</div><!-- .entry-content -->
<?php endif; // is_sticky() ?>
</article><!-- #post -->
内容homerecent:
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<div class="rcrop">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail(\'homepage-thumb\'); ?>
</a>
</div>
</header><!-- .entry-header -->
<div class="entry-content">
<h3 class="entry-title">
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
</h3>
<?php the_excerpt(); ?>
</div><!-- .entry-content -->
<?php echo do_shortcode(\'[shareaholic app="share_buttons" id="12345"]\'); ?>
</article><!-- #post -->