I found this little nifty piece of code to be extremely helpful, I hope you do too: <?php global $wp_query; $postid = $wp_query->post->ID; echo get_post_meta($postid, 'Custom_Field_Name', true); wp_reset_query(); ?> Be sure to keep those half-bracket things around your own custom field name.