Yuvalanmış döngülerdeki gönderi verilerini önceki döngüye sıfırlama


21

Mesajlar eklentisi yazıları ile iç içe döngüler kullanmaya çalışıyorum. Döngüler her ikisi de çalışır, ancak sorun ikinci iç içe döngü ($ issue) sonra ortaya çıkar. $ Yayın döngüsüne tekrar erişmek istiyorum, ancak veriler hala $ sorunu veriler.

wp_reset_query() istemediğim single.php dosyasında ana döngüye geri dönecektir.

get_posts()Yeni WP_Query yerine kullanabilirsiniz , ancak kullanabilmek istiyorum get_template_part().

Verilerimi yayın döngüsüne nasıl sıfırlayabilirim, böylece ikinci 'Yayın başlığı' sorunu değil başlığı yayınlar?

Single.php içindeki kodumu İşte:

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

Yanıtlar:


20

Bunu kendim cevaplayacağım, ama bunu benim için çözen insanlar için çok zeki @simonwheatley idi.

wp_reset_postdata()Veya yerine wp_reset_query()kullanmak için aşağıdakileri kullanabilirsiniz:

$publication->reset_postdata();

Burada $ publication sorgu nesnenizdir.

Çalışma kodu artık şuna benziyor:

$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
Gerçekten de, bunu yapmanın çok daha akıllı bir yolu.
David

Bu gerçekten işinize yarıyor mu?
GDY

5

Her şeyden önce, get_posts()birlikte kullanmanın mümkün olduğunu düşünüyorum setup_postdata(). Bunlarla, şablon etiketlerini normal bir WordPress döngüsünde olduğu gibi kullanabilirsiniz.

Ancak bu işlevi iç içe döngülerinizde de kullanabilirsiniz:

# 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();
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.