Here's what I am trying to do:
I am trying to get one page in wordpress to pull data from custom fields in other pages. So that when a user creates a page and uses a particular custom field (in this case multiedit_Info), it will populate in the "target" page.
Here's my code that I am working with:
<?php $item = get_post_meta($post->ID, 'multiedit_Info', false); ?>
<div id="info-col">
<?php echo $item; ?>
</div>
I am currently using a plugin that create content blocks by using custom fields. And I want to get it so that a user can just create a new page with the custom fields and then have it display in an array on another page.
Not too sure if I am setting this up correctly or not. This is the first time I've ever used it so any help is appreciated. Thanks!
<?php print_r( $item ); ?>to see. – weberwithoneb May 24 '12 at 21:53