This page redirects to an external site: https://developer.wordpress.org/reference/functions/rewind_posts/
Languages: English • Italiano • Reference/rewind posts 日本語 (Add your language)
Riavvolge il ciclo (loop) degli articoli.
<?php rewind_posts(); ?>
Questa funzione non accetta alcun parametro.
Questa funzione non restituisce alcun valore.
// ciclo principale <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php the_content(); ?> <?php endwhile; endif; ?> // rewind <?php rewind_posts(); ?> // nuovo ciclo <?php while (have_posts()) : the_post(); ?> <?php the_content(); ?> <?php endwhile; ?>
rewind_posts() si trova in wp-includes/query.php
.
Query Tags: WP_Query (Classe), get_query_var(), query_posts(), have posts(), the_post(), rewind_posts(), wp_reset_postdata(), wp_reset_query()