Hi, In one of our wordpress themes i have two custom fields (Video and Thumbnail) how would i add these two custom fields to our new wordpress theme? Can someone please help? Cheers
add them in your theme files: <?php $values = get_post_custom_values("Video"); echo $values[0]; ?> if you are using the thumbnail url: <img src="<?php $values = get_post_custom_values("Thumbnail"); echo $values[0]; ?>" alt="" />