Home › Forums › Back End › Display content from another page with custom fields in WordPress › Re: Display content from another page with custom fields in WordPress
May 28, 2012 at 1:09 pm
#103581
Participant
I think what you are looking for is.
<?php echo get_post_meta($post->ID, ‘name_of_custom_meta’, true); ?>
This will output the saved info in the custom meta box.
Check the WordPess Codex for get_post_meta() for more details.