:Edit - Resolved: See 4th Post :
I can't seem to figure out why this simple query is only returning one result. There are definitely more. I am using the custom post type, sorted by custom taxonomy in wordpress 3.0
Here is the page:
PHP Code:
<?php
/*
Template Name: Teachers
*/
get_header(); ?>
<div id="content">
<?php
$teacher_query = new WP_Query('post_type=Teachers&status=Permanent&orderby=menu_order');
if ($teacher_query->have_posts()) : while ($teacher_query->have_posts()) : $teacher_query->the_post(); ?>
<div class="post teacher">
<div class="teacher-thumb">
<?php mf_post_thumbnail();?>
</div>
<h2><?php the_title(); ?></h2>
<div class="entry">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; else: ?>
<p>Currently, no teacher profiles have been uploaded.</p>
<?php endif; ?>
</div>
<?php get_footer(); ?>
I am hoping this is just tired eyes!!