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>
...
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.