Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save spencejs/5226400 to your computer and use it in GitHub Desktop.
Save spencejs/5226400 to your computer and use it in GitHub Desktop.
Display Custom Field Value Outside Of The Loop
<?php
global $wp_query;
$postid = $wp_query->post->ID;
echo get_post_meta($postid, 'sidebar_gallery', true);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment