WordPress:所有页面都在一页上
我想组合一个主题,在单个页面上显示所有“页面”。我假设最好的地方是“index.php”...并且我想确保我的代码是执行此操作的正确方法:
<?php query_posts('post_type=page'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
另外,是否有一种方法可以选择不显示子页面?
I'd like to put together a theme that displays all "pages" on a single page. I'm assuming that the best place for this would be "index.php" ... and I want to make sure that my code is the proper way of doing this:
<?php query_posts('post_type=page'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
Also, is there a way to optionally NOT display sub-pages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
排除所有子页面的最简单方法是:
The easiest way to exclude all sub pages is this: