Skip to content

Instantly share code, notes, and snippets.

@adapicom
Created November 1, 2013 17:23
Show Gist options
  • Save adapicom/7268759 to your computer and use it in GitHub Desktop.
Save adapicom/7268759 to your computer and use it in GitHub Desktop.
Wordpress: get custom field from a specific post/page ID
global $wp_query;
$postid = $wp_query->post->ID;
echo get_post_meta('4', 'qofday', true);
wp_reset_query();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment