how to print the content of pages inside the front end area
i'm new to wordpress and i'm trying to create a website. i need display the content of the pages when corresponding menu items are clicked. my page.php contain
?php while ( have_posts() ) : the_post();
$page_data= $post-ID;
if($page_data=='116')
{
?
centerbh2WELCOME TO THE CLINIC!!/h2/b/center
?php
}
else{
?
h1 class="entry-title"?php the_title(); ?/h1
?php
the_content();
}
endwhile; ?
but my content is not displaying. title is showing properly. what is the mistake in the code? please help me.
Topic the-content pages Wordpress
Category Web