1$post = get_post( 123 ); // Where 123 is the ID
2$output = apply_filters( 'the_content', $post->post_content );
1//WordPress: Query a specific post by its post type & ID
2//For example, query Case Study with ID #12345
3
4<?php query_posts('post_type=case_studies&p=12345'); ?>
5
6/*To determine a post ID, refer to the
7URL of the post while editing it:
8http://localhost...wp-admin/post.php?post=12345...*/