大家好,我有这个模板页面,它获取页面的帖子,然后是来自分类新闻的帖子列表。
<?php
/*
* Template Name: News & Info
*/
get_header();
?>
<div id="cLeft">
<?php
if (function_exists(\'yoast_breadcrumb\')) {
yoast_breadcrumb(\'<p id="breadcrumb">\', \'</p>\');
}
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="title">
<h1><?php the_title(); ?></h1>
</div>
<div id="freetext">
<?php the_content(); ?>
</div>
<?php endwhile;
endif; ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php query_posts(\'cat=32\'); ?>
<div class="post">
<h2><a href=""></a></h2>
<div class="postDescr"></div>
</div>
<?php endwhile;
endif; ?>
</div>
<div id="cRight">
<h2>News & Info:</h2>
<ul id="submenu">
<?php wp_list_pages(\'hide_empty=0&child_of=26&title_li=&sort_column=menu_order\'); ?>
</ul>
</div>
<?php get_footer(); ?>
第二个循环进入无限循环,我不知道我做错了什么。
提前感谢