<?php query_posts('post_type=lecturer'); ?>//lecturer部分がカスタム投稿タイプ名になります。 <?php if(have_posts()) : while (have_posts()) : the_post(); ?> <?php the_content('Read the rest of this entry »'); ?> <?php endwhile; endif; ?> <?php wp_reset_query(); ?>