¿Hay una declaración if que pueda determinar si una publicación en el bucle es la última publicación?

10

Por ejemplo, dentro del bucle podría hacer algo como esto

if lastpost { 
}
else {
}
Carson
fuente

Respuestas:

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

Cambie $ wp_query a su propia variable de consulta si creó un nuevo objeto WP_Query.

Otón
fuente
3

Te he codificado un pequeño ejemplo rápido para ti. Debería explicar cómo obtener la primera y última publicación en un bucle 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;
Dwayne Charrington
fuente
1
if (!get_next_post_link()) { 
    echo 'the last post here'; 
}
usuario315338
fuente
0
if (!get_previous_post_link()) { 
    echo 'the last post here'; 
}

O

if (get_next_post_link()) { 
    echo 'the last post here'; 
}
iranimij
fuente