我想在网页上显示所有帖子,每个帖子都应包含在class =“post”的div中。我在哪里必须在循环中添加HTML?
PHP
<?php
query_posts('cat=5');
while (have_posts()) : the_post();
the_content();
endwhile;
?>
HTML
<div class="post"></div>
答案 0 :(得分:1)
这个怎么样?
<?php
query_posts('cat=5');
while (have_posts()) : the_post();
echo '<div class="post">';
the_content();
echo '</div>';
endwhile;
?>