wp_head用于循环中的单个帖子

时间:2014-10-29 14:37:12

标签: wordpress-plugin wordpress

我希望在循环中获得帖子标题,这只返回第一个帖子标题,之后返回一般网站标题如何使其返回标题为循环中的帖子

while ( have_posts() ) {
     the_post();
              wp_head();
    }

1 个答案:

答案 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
?>

上面的代码将查询您的所有帖子,并显示帖子的标题,该帖子是该帖子的链接。