Ripristino dei dati di post sul loop precedente in loop nidificati


21

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;
}

Risposte:


20

Risponderò da solo, ma è stato il molto intelligente @simonwheatley di Code for the People a risolverlo per me.

Invece di utilizzare wp_reset_postdata()o wp_reset_query(), è possibile utilizzare quanto segue:

$publication->reset_postdata();

Dove $ publishing è l'oggetto della query.

Il codice di lavoro ora appare come:

$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; $publication->reset_postdata();
    }

    echo '<h2>Publication title = '.get_the_title().'</h2>';

endwhile;
}

1
In effetti, questo è il modo molto più intelligente di farlo.
David,

Funziona davvero per te?
GDY

5

Prima di tutto, penso che sia possibile utilizzare get_posts()in combinazione con setup_postdata(). Con questi, puoi usare i tag del modello come in un normale ciclo di WordPress.

Ma puoi usare questa funzione anche nei tuoi loop nidificati:

# make sure $post is the global in your scope (which should be the case in single.php)
global $post;
if ( $publication->have_posts() ) {
while ( $publication->have_posts() ) : $publication->the_post();
    echo '<h2>Publication title = '.get_the_title().'</h2>';
    $pub_id = get_the_ID();

    # preserve the current post in the higher loop
    $preserve_post = get_post();

    $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;
    }

    # set the global back to your first loop post
    $post = $preserve_post;
    setup_postdata( $post );
    // This currently returns the issue title, not the publication title
    echo '<h2>Publication title = '.get_the_title().'</h2>';

endwhile;
}
wp_reset_query();
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.