我已经创建了自己的页面模板,其中我有一个帖子列表,直接位于内容下方,因此:
<?php the_content(); ?>
<?php query_posts(\'category_name=vacancies\'); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php // Reset Query
wp_reset_query(); ?>
这在这个页面上可以很好地工作,但是在主索引页面上,我的模板被设置为可以加载到四个不同的页面中。我想将其包括在其中一项中,例如:
如果页中存在query\\u posts(),则加载到索引页上的\\u content()
有点困惑,希望我说的有道理,有什么想法吗?