Use Custom Fields with WordPress?

Do you ever use custom fields with your posts and have trouble getting them to display? Well here’s a quite little line of code to add into the post loop to get them to display.

[html]<?php echo get_post_meta($post->ID, ‘custom field name here’, true); ?>[/html]

It really is that simple!!