我面临一个问题,我的标题被多次显示。
使用以下代码,页面标题“News”显示10次,与我选择显示的帖子数量相同。
<?php while ( have_posts() ) : the_post();
if( is_singular() ) { ?>
<h1 class="row-title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<p class="meta">Written By: <?php echo get_the_author() ?><span>•</span><?php the_date(); ?></p>
<?php } else { ?>
<h1 class="row-title"><?php wp_title(); ?></h1>
<?php } endwhile; ?>
但是,使用此版本的代码,将显示最新的10个帖子标题。
<?php while ( have_posts() ) : the_post();
if( is_singular() ) { ?>
<h1 class="row-title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<p class="meta">Written By: <?php echo get_the_author() ?><span>•</span><?php the_date(); ?></p>
<?php } else { ?>
<h1 class="row-title"><?php the_title(); ?></h1>
<?php } endwhile; ?>
任何帮助都将不胜感激。谢谢