Post Loop not FInding Posts – Please Help :)
-
The following loop runs without error but is not finding posts.
Your help is greatly appreciated!<?php
/*
Template Name: Test Blog Loop
*/
?><?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<ul class=”archive-list clearfloat”>
<li class=”clearfloat”>
<h4>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></h4>
<p class=”postmetadata”><?php _e(‘Authored by’,’Mimbo’); ?> <?php the_author_posts_link(‘namefl’); ?> <?php _e(‘on’,’Mimbo’); ?> <?php the_time(‘n/d/y’); ?> • <?php _e(‘Categorized as’,’Mimbo’); ?> <?php the_category(‘,’) ?></p>
<?php the_content(); ?>
<?php endwhile; ?>
<h2><?php _e(‘Not Found’,’Mimbo’); ?></h2>
<?php endif; ?>
<?php posts_nav_link(‘ — ‘, __(‘« Newer Posts’), __(‘Older Posts »’)); ?>
</div>
</div>
- The topic ‘Post Loop not FInding Posts – Please Help :)’ is closed to new replies.