如果我理解正确,问题是您分配了一个静态$page\\u id=98;因此,无论您转到哪个页面,它都只会显示该页面的内容。
您需要的是使用WordPress循环,所以将您的代码更改为
<!-- Start Page Content -->
<h1 class="blog-title"><?php the_title(); ?></h1>
<?php
if (have_posts()) : while (have_posts()) : the_post();
the_content();
endwhile;
endif;
?>
<!-- End Page Content -->
</div>
<!--End Main Content -->
</div>
<!-- End Container -->
这就是为什么您会得到相同的结果,但它会在所有页面上运行。