Page not displaying
-
I am trying to create a page in WP 2.3. I am using this for my page:
\<?php get_header(); ?><?php include(TEMPLATEPATH.”/sidebar1.php”);?>
<?php
/*
Template Name: Net Bible
*/
?>
Then i have some html placed here
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<div class=”entrytext”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link(‘Edit this entry.’, ‘<p>’, ‘</p>’); ?>
<?php include(TEMPLATEPATH.”/sidebar2.php”);?>
</div>
<?php get_footer(); ?>\
The html refuses to display. I have other pages with html in them and they work fine. You can see here and then click on resources->Bibles->King James works and the one i am trying to get to work is Net Bible
- The topic ‘Page not displaying’ is closed to new replies.