badcrocodile
7/11/2013 - 1:24 AM

Prints a custom field value by name.

Prints a custom field value by name.

<?php
// Prints the custom field of your choice
$my_custom_field = $custom_fields['gcfx_art_category_field_id'];
foreach ( $my_custom_field as $key => $value )
  echo $key . " => " . $value . "<br />";
?>