wordpress - 包含在div中的所有帖子

时间:2013-12-29 10:58:11

标签: php html wordpress

我想在网页上显示所有帖子,每个帖子都应包含在class =“post”的div中。我在哪里必须在循环中添加HTML?

PHP

<?php
 query_posts('cat=5');
while (have_posts()) : the_post();
the_content();
endwhile;
?>

HTML

<div class="post"></div>

1 个答案:

答案 0 :(得分:1)

这个怎么样?

<?php
query_posts('cat=5');
while (have_posts()) : the_post();
echo '<div class="post">';
the_content();
echo '</div>';
endwhile;
?>