Skip to content

Instantly share code, notes, and snippets.

@orenshamai
Created April 30, 2015 07:24
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 orenshamai/335339e9e8ed5b68efed to your computer and use it in GitHub Desktop.
Save orenshamai/335339e9e8ed5b68efed to your computer and use it in GitHub Desktop.
Display post custom field example
<?php
global $wp_query;
$postid = $wp_query->post->ID;
echo get_post_meta($postid, 'title-2', true);
wp_reset_query();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment