[Plugin: Posts 2 Posts] Retrieve the post_meta
-
Hi
first of all thanks for the awesome plugin. There is just one thing that I can’t get to work – I simply want to display some custom fields from the connected post type.
That’s the code I tried:
<?php $connected = new WP_Query( array( 'post_type' => 'person', 'connected' => get_queried_object_id() ) ); echo '<ul>'; while( $connected->have_posts() ) : $connected->the_post(); echo '<li>'; the_title(); echo get_post_meta(get_the_ID(), 'email', true); echo '</li>'; endwhile; echo '</ul>'; wp_reset_postdata(); ?>
… it’s that get_post_meta thing …
thanks werner
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Plugin: Posts 2 Posts] Retrieve the post_meta’ is closed to new replies.