Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

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

#103581
gilgimech
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.