Sto cercando di utilizzare loop nidificati con il plug-in Posts to posts. I loop funzionano entrambi, ma il problema sorge dopo il secondo loop nidificato ($ issue). Voglio accedere nuovamente al ciclo $ publishing, ma i dati sono ancora i dati $ issue.
wp_reset_query()
tornerò al loop principale in single.php che non voglio.
Potrei usare al get_posts()
posto del nuovo WP_Query, ma voglio essere in grado di usare get_template_part()
.
Come posso ripristinare i miei dati nel ciclo di pubblicazione, in modo che il secondo "Titolo della pubblicazione" restituisca la pubblicazione, non il problema, il titolo?
Ecco il mio codice in single.php:
$publication = new WP_Query( array(
'connected_type' => 'publication_to_post',
'connected_items' => $post->ID,
'fields' => 'ids',
'posts_per_page' => 1,
) );
if ( $publication->have_posts() ) {
while ( $publication->have_posts() ) : $publication->the_post();
echo '<h2>Publication title = '.get_the_title().'</h2>';
$pub_id = get_the_ID();
$issue = new WP_Query( array(
'connected_type' => 'publication_to_issue',
'connected_items' => $pub_id,
'fields' => 'ids',
'posts_per_page' => 1,
) );
if ( $issue->have_posts() ) {
while ( $issue->have_posts() ) : $issue->the_post();
// need to be able to use template parts in here
echo '<h2>Issue title = '.get_the_title().'</h2>';
endwhile;
}
// This currently returns the issue title, not the publication title
echo '<h2>Publication title = '.get_the_title().'</h2>';
endwhile;
}