Support

Account

Home Forums Front-end Issues Displaying Post Object Title in Query Reply To: Displaying Post Object Title in Query

  • Hi,

    Not sure about what’s wrong but I already have this issue ( When get post object inside a post query and display data). I solve it by register each post ID and get data with the ID ( I think WP is a bit confused =D) …

    Try to save the current query post ID :

    ...
    <?php while($custom_query01->have_posts()) : $custom_query01->the_post(); ?>
    <?php $query_id = get_the_ID(); // THE CURRENT POST OF QUERY ID ?>
    ... 

    Do the same for the object you get :

    ...
    if( $post_object01 ): 
    $object_id = $post_object01->ID; // THE OBJECT ID
    ...

    And display all your data with echo and “get” like that :

    ...
    <?php echo get_the_title($object_id); // USE THE ID ?>
    ...
    <a href="<?php echo get_the_permalink($query_id); ?>" class="btn btn-warning">Daten & Preise</a>
    ...