Posts and Comments Not Appearing
-
Suddenly, both posts and comments are not appearing on my main pages, or any archive pages. Only the title is appearing. I’ve contacted my domain support, and they are stumped. I’ve checked a few plugins and themes as well.
Someone else mentioned the content tag, but it’s there.
I’m stumped and reaching the end here.
https://www.radicalcontrapositions.com/left_flank/
<?php get_header(); ?>
<div class=”narrowcolumn”>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” title=”<?php the_title(); ?>”>
<?php the_title(); ?>
</h2>
<div class=”postdate”>
<?php the_time(‘F jS, Y’) ?>
</div>
<p class=”postinfo”>
<?php _e(‘Filed under:’); ?>
<?php the_category(‘, ‘) ?>
|
<?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
<?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?>
</p>
<div class=”entry”>
<?php the_content(‘Read more…’); ?>
<!– <?php trackback_rdf(); ?> –>
</div>
</div>
<?php endwhile; ?>
<?php include (TEMPLATEPATH . ‘/browse.php’); ?>
<?php else : ?>
<div class=”post”>
<?php _e(‘404 Error: Not Found’); ?>
</div>
<?php endif; ?>
</div>
<?php get_footer(); ?>
- The topic ‘Posts and Comments Not Appearing’ is closed to new replies.