给其他想用这个的人,
此解决方案将页面转换为类别页面,这是一种将类别转换为列出页面的标题导航的简单方法。
只需将此代码制作成页面模板,并设置与要显示的类别匹配的标题。
<?php
$args = array(\'posts_per_page\' => 10, \'category_name\' => $post->post_title );
$related = new WP_Query( $args );
if( $related->have_posts() ): while( $related->have_posts() ): $related->the_post();
?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>