Support

Account

Home Forums Front-end Issues Using Post_Object only returning IDs? Reply To: Using Post_Object only returning IDs?

  • Hi @Matthew O’Donnell

    In your first snippet of code, you are using 2 different lines of code to do the same thing:

    
    <?php if ($variable = get_field('get_game_details', $post->ID) ): ?>
    <?php $post_object = get_field('get_game_details');
    

    The first line sets $variable to that of the posts from a specific post_id, however, you then store $post_objects from the current post_id (no parameter).

    Is this a mistake or intentional?