Skip to content

Instantly share code, notes, and snippets.

@feliciaceballos
Created April 27, 2016 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save feliciaceballos/bf02ad39c552b7d54c5ac451d301aa7d to your computer and use it in GitHub Desktop.
Save feliciaceballos/bf02ad39c552b7d54c5ac451d301aa7d to your computer and use it in GitHub Desktop.
Bill Erickson Get Custom Field
function get_custom_field($field) {
global $post;
$value = get_post_meta($post->ID, $field, true);
if ($value) return esc_attr( $value );
else return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment