Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chancecorbeil/8941c6cf650a25e76b908e08912a047d to your computer and use it in GitHub Desktop.
Save chancecorbeil/8941c6cf650a25e76b908e08912a047d to your computer and use it in GitHub Desktop.
// Load custom fields using a post id
$postid = 315 ; // post ID 315
$post = get_post( $postid ); // Use the post ID to get the post data
echo $postid; // The post ID
echo $post->post_title; // The post title
echo $post->route_id; // The custom field
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment