Support

Account

Home Forums General Issues Trying to display posts related to other posts Reply To: Trying to display posts related to other posts

  • Couple things:

    1. On get_field in this manner you may need to pass two additional parameters according to the docs at http://www.advancedcustomfields.com/resources/relationship/
    2. Sometimes post_type => 'any' fails, so might be worth a shot with a set array just to test
    
    <?php 
    $ids = get_field('attach_to_client', false, false);
    
    $query = new WP_Query(array(
    	'post_type'      	=> array('post','page'),
    	'posts_per_page'	=> 10,
    	'post__in'		=> $ids,
    	'post_status'		=> 'any',
            'orderby'        	=> 'modified',
    ));
    ?>
    <h3><?php get_field( 'clients' ) ?></h3>	
    <?php if ($query->have_posts()) : ?>
    <ul>
    <?php
    	while($query->have_posts()) :
    		$query->the_post();
    ?>
    	<li><?php the_title(); ?></li>
    
    <?php endwhile; ?>
    </ul>
    <?php else: ?>
    
          <p>Oops, there are no posts.</p>
    
    <?php
       endif;
    ?>