考虑最简单的archive.php
可能的:
<?php
get_header();
while ( have_posts() ) {
the_post();
the_title();
}
get_footer();
What address should I type into the browser to get to this page and display all posts? permalink自定义结构设置为“/%category%/%postname%/”。我试过去
http://example.com/posts 但该页面只返回404错误。