Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Find connected posts
- $connected = new WP_Query( array(
- 'connected_type' => 'golfs_to_sejours',
- 'connected_items' => get_queried_object_id(),
- 'nopaging' => true,
- 'post_type' => 'golf',
- ) );
- // Display connected posts
- if ( $connected->have_posts() ) :
- ?>
- <?php while ( $connected->have_posts() ) : $connected->the_post(); ?>
- <div class="alignleft golf">
- <h3><?php the_title(); ?></h3>
- <?php if ( has_post_thumbnail() ) { the_post_thumbnail('sejours-thumbnails', array('class' => 'alignright')); } ?>
- <div class="golf-listing">
- <?php the_content(); ?>
- <?php comments_template(); ?>
- <?php $related = p2p_type( 'golfs_courses' )->get_related( get_queried_object_id() ); ?>
- </div>
- </div>
- <?php endwhile; ?>
- <?php
- // Prevent weirdness
- wp_reset_postdata();
- endif;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment