我是 wordpress 新手,我正在尝试创建一个网站。单击相应的菜单项时,我需要显示页面的内容。我的 page.php 包含
<?php while ( have_posts() ) : the_post();
$page_data= $post->ID;
if($page_data=='116') //Home page
{
?>
<center><b><h2>WELCOME TO THE CLINIC!!</h2></b></center>
<?php
}
else{ //for other pages
?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php
the_content();
}
endwhile; ?>
但我的内容没有显示。标题显示正确。代码中的错误是什么?请帮我。