• I tried making a page, even tried accessing the default “About” page, but it comes out blank. It only displays the “title”(?) Here’s my code:

    <?php get_header(); ?>
    
    <table width="98%" cellbadding="0" cellspacing="2" border="0">
    <tr><td class="post-title"><b><?php the_title(); ?></b></td></tr>
    <tr><td class="post-news"><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <?php endwhile; endif; ?></td></tr></table>
    
    <?php get_footer(); ?>

    Could it be the code? Any help would be appreciated, thanks!

The topic ‘Blank Page? No content…’ is closed to new replies.