Hi All,
I was looking at the way Categories displays a list of all the posts under that category and want to replicate it using a custom post meta. For example, display all the posts with a custom value set as 'blue'.
I have this piece of code which displays the post value:
<?php $customField = get_post_custom_values("Location");
if (isset($customField[0])) {
echo "Location: ".$customField[0];
}
?>