Support

Account

Home Forums General Issues From relationship items, pull meta values? Reply To: From relationship items, pull meta values?

  • Hi there!

    I’m presuming each citation is it’s own post? If so, the following should work.

    $posts = get_field('select_articles');
     
    if( $posts ): 
        
        foreach( $posts as $post): // variable must be called $post (IMPORTANT) 
            setup_postdata($post);
            
            the_title();
    	the_content(); //print and format how and what you want from the citation post
    
    endforeach;
       
    wp_reset_postdata(); // IMPORTANT - reset the $post object so the rest of the page works correctly
    endif;

    Adapted from http://www.advancedcustomfields.com/resources/field-types/relationship/

    Let me know how you get on 🙂