Ok, I installed the Custom Post Type UI plugin and create one. I then added a new post to it. In my theme, i have a piece of code like this:
<?php
$loop = new WP_Query( array(
'post_type' => 'case studies', /* edit this line */
'posts_per_page' => 15 ) );
?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<a href="https://wordpress.stackexchange.com/questions/50372/<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail('thumbnail'); ?>
</a>
<?php endwhile; ?>
Now, firstly if i click the thumbnail, i get an error in the browser saying it’s in a redirect loop, but secondly I’d like to know exactly what files i need to create to view a single post of this custom post type. And what to put in that file.