• The theme I’m using stops loading at a certain point in single.php
    I need help troubleshooting what’s wrong with the code. This is the page. As you can see, it halts after ‘Tagged:’

    This is the code in single.php, any ideas?:

    <?php get_header(); ?>

    <div class=”content”>
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?> <span class=”chrondate”><?php the_author_posts_link(‘nickname’) ?></span></h2>
    <div class=”entrymeta”><p>Stamped: <?php the_date(‘l, F jS, Y’) ?> <?php the_time() ?> | <?php edit_post_link(‘e’,”,”); ?>
    Tagged: <?php UTW_ShowTagsForCurrentPost(“commalist”) ?></p></div>

    <div class=”entry”>
    <p><?php the_meta(); ?></p>
    <?php the_content(‘Read More »’); ?>
    </div><!– end entry –>

    </div>

    <?php comments_template(); ?>

    <?php endwhile; else: ?>

    <h2>What you seek is misplaced or lost</h2>

    <p>You seemed to have found a mislinked file, page, or search query with no results. If you feel you have reached this page in error, double check the URL and try again. If you insist that what you are looking for should exist on this very page, reread this statement and try again.</p>

    <?php endif; ?>

    </div><!– end content –>

    </div><!– close page –>
    <?php include (TEMPLATEPATH . “/bottom_single.php”); ?>
    <?php get_footer(); ?>

The topic ‘help troubleshooting code in single.php’ is closed to new replies.