Pregunta

Tengo tres bucles y quiero evitar que muestren las mismas publicaciones en cada uno.

cualquier ayuda sería muy apreciada

<?php
$i;
$args = array( 'numberposts' => 8);
$posts= get_posts( $args );
if ($posts) {
    foreach ( $posts as $i => $post )
         {
        setup_postdata($post);

    }
}
?>
<div class="item" id="<?php echo $i; ?>" >
<?php
$a = 0;
foreach( $posts as $i => $post ) :
if ($a == 4) { break; }
?>
            <div class="col-md-6 nopadding view view-ninth" style="">

                            <?php the_post_thumbnail('large'); ?>
                            <div class="content">
                                                    <h2><?php the_title(); ;?></h2>
                            <p><?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,15) . '...'; ?></p>
                            <a href="<?php the_permalink() ?>" class="info">Read More >></a>
                                                    </div>
                            </div>
 <?php $a++; endforeach;  ?>
</div><!-- end item -->


<div class="item" id="<?php echo $i; ?>" >
<?php
$a = 0;
foreach( $posts as $i => $post ) :
if ($a == 4) { break; }
?>
            <div class="col-md-6 nopadding view view-ninth" style="">

                            <?php the_post_thumbnail('large'); ?>
                            <div class="content">
                                                    <h2><?php the_title(); ;?></h2>
                            <p><?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,15) . '...'; ?></p>
                            <a href="<?php the_permalink() ?>" class="info">Read More >></a>
                                                    </div>
                            </div>
 <?php $a++; endforeach;  ?>
</div> 


<div class="item" id="<?php echo $i+1; ?>" >
<?php
$a = 0;
foreach( $posts as $i => $post ) :
if ($a == 4) { break; }
?>
            <div class="col-md-6 nopadding view view-ninth" style="">

                            <?php the_post_thumbnail('large'); ?>
                            <div class="content">
                                                    <h2><?php the_title(); ;?></h2>
                            <p><?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,15) . '...'; ?></p>
                            <a href="<?php the_permalink() ?>" class="info">Read More >></a>
                                                    </div>
                            </div>
 <?php $a++; endforeach;  ?>
</div>
¿Fue útil?

Solución 2

    <?php $args = array( 'numberposts' => 8);
    $posts= get_posts( $args );


   $i=0;
   foreach($posts as $key=>$value) {

    if($i==0) { echo "<div class=\"item\" id=\"".$key."\" >"; } ?>

                <div class="col-md-6 nopadding view view-ninth" style="">

                                <?php echo get_the_post_thumbnail($value->ID, 'large'); ?>
                                <div class="content">
                                <h2><?php echo $value->post_title; ?></h2>
                                <p><?php echo string_limit_words($value->post_excerpt,15) . '...'; ?></p>
                                <a href="<?php echo get_permalink($value->ID); ?>" class="info">Read More >></a>
                                 </div>
                </div>
     <?php $i++; if($i==4) { $i=0; echo "</div><div class=\"item\" id=\"<?php echo $key; ?>\" >"; } } ?>

     </div>

Esta es mi solución al final.

Otros consejos

Puedes usar WP_Query para crear su bucle personalizado y luego use el offset parámetro para omitir las publicaciones en el bucle anterior.Vas a ejecutar 3 bucles desde una consulta, por lo que todo lo que necesitas hacer para volver a ejecutar la consulta es usar rewind_posts() después de cada bucle para restablecer el bucle

A continuación se muestra un código de ejemplo que puede modificar para adaptarlo a sus necesidades exactas.Este es solo un bucle muy básico.

<?php
$args = array( 'posts_per_page' => 4);
$my_query= new WP_Query( $args ); ?>
<ul>
    <?php
    while ($my_query->have_posts()) : $my_query->the_post();
        ?>
        <li><?php the_title(); ?></li>
        <?php
    endwhile; 
    ?>
</ul>
<?php

$my_query->rewind_posts();

?> 
<ul>
    <?php
    $my_query->query('posts_per_page=4&offset=4');
    while ($my_query->have_posts()) : $my_query->the_post();
        ?>
        <li><?php the_title(); ?></li>
        <?php
    endwhile;
    ?>
</ul>
<?php

$my_query->rewind_posts();

?> 
<ul>
    <?php
    $my_query->query('posts_per_page=4&offset=8');
    while ($my_query->have_posts()) : $my_query->the_post();
        ?>
        <li><?php the_title(); ?></li>
        <?php
    endwhile;
    ?>
</ul>
<?php
wp_reset_postdata();
?>
Licenciado bajo: CC-BY-SA con atribución
scroll top