我希望在循环中获得帖子标题,这只返回第一个帖子标题,之后返回一般网站标题如何使其返回标题为循环中的帖子
while ( have_posts() ) {
the_post();
wp_head();
}
答案 0 :(得分:0)
通过“帖子标题” - 你的意思是实际的帖子名称?首先,检查循环文档here。查询“循环”时,您将根据查询参数从数据库中获取特定数量的帖子。从循环中显示数据是在循环内单独完成的。例如:
<?php
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
} // end if
?>
上面的代码将查询您的所有帖子,并显示帖子的标题,该帖子是该帖子的链接。