Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这可能是一个非常基本的问题,但我在我的主页上显示了我所有的帖子后,按照发布的顺序。这最初是这样的,但我已经摆弄了一些完全不同的东西!我仍然想要那个主页,但我所有的帖子都放在它下面
任何帮助将非常感激
我当前的索引页面如下 -
<?php include "header.php"; ?> <div id="wrapper"> <?php include "iframe.php"; ?> <?php include "sidebar.php"; ?> </div>
WordPress Codex 建议以下内容
<?php $allposts = get_posts( array('numberposts' => -1) ); foreach($allposts as $post) : setup_postdata($post); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_content(); endforeach; ?>