Esiste un'istruzione if che può determinare se un post nel ciclo è l'ultimo post?


10

Ad esempio, all'interno del loop potrei fare qualcosa del genere

if lastpost { 
}
else {
}

Risposte:


27
if ($wp_query->current_post +1 == $wp_query->post_count) {
    // this is the last post
}

Cambia $ wp_query nella tua variabile di query se hai creato un nuovo oggetto WP_Query.


3

Ho scritto un breve esempio per te. Dovrebbe spiegare come ottenere il primo e l'ultimo post in un ciclo WP.

    $post_count = 0;
    $total = count($posts);

    while (have_posts()) : the_post();

        if ($post_count == 1 AND $post_count !== $total)
        {
            // This is the first post
        }

        if ($post_count == $total)
        {
            // This is the last item
        }

        $post_count++;

    endwhile;


0
if (!get_previous_post_link()) { 
    echo 'the last post here'; 
}

O

if (get_next_post_link()) { 
    echo 'the last post here'; 
}
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.