web-dev-qa-db-fra.com

Catégorie Foreach continue à boucler?

J'utilise le code suivant pour acquérir toutes les catégories enfants d'une catégorie et affiche les messages enfants des catégories enfants.

<?php
$cats = get_categories( 'child_of='.get_query_var( 'cat' ) );

foreach ( $cats as $cat ) :

    $args = array(
        'posts_per_page' => 3, // max number of post per category
        'category__in'   => array( $cat->term_id )
    );
    $my_query = new WP_Query( $args ); 

    if ( $my_query->have_posts() ) :
        echo '<h3>'.$cat->name.'</h3>';
        ?>

        <?php while( $my_query->have_posts() ) : $my_query->the_post(); ?>
            <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
            <br />  
        <?php endwhile; ?>

    <?php else : ?>
        No Posts for <?php echo $cat->name; ?>
    <?php endif; ?>
<?php endforeach; ?>

et je veux acquérir cette sortie.

 Cat Child 1
 -Post1 Child 1
 -Post2 Child 1
 -Post3 Child 1
 -So on... .

 Cat Child 2
 -Post1 Child 2
 -Post2 Child 2
 -Post3 Child 2
 -So on... .

Mais au lieu de cela, les deux catégories d’enfants se répètent sans cesse. Quelqu'un peut-il me dire quel est le problème? C'est la sortie que j'ai maintenant.

 Cat Child 1
 -Post1 Child 1
 -Post2 Child 1
 -Post3 Child 1
 -So on... .

 Cat Child 2
 -Post1 Child 2
 -Post2 Child 2
 -Post3 Child 2
 -So on... .
 Cat Child 1
 -Post1 Child 1
 -Post2 Child 1
 -Post3 Child 1
 -So on... .

 Cat Child 2
 -Post1 Child 2
 -Post2 Child 2
 -Post3 Child 2
 -So on... .
 Cat Child 1
 -Post1 Child 1
 -Post2 Child 1
 -Post3 Child 1
 -So on... .

 Cat Child 2
 -Post1 Child 2
 -Post2 Child 2
 -Post3 Child 2
 -So on... .

jusqu'à ce qu'il boucle 9 fois et s'arrête. quel est le problème?

1
user1178152
   <?php  $cats = get_categories('child_of='.get_query_var('cat')); 

   foreach ($cats as $cat) :

  $args = array(
  'posts_per_page' => 3, // max number of post per category
  'category__in' => array($cat->term_id)
   );
   $my_query = new WP_Query($args); 

    if ($my_query->have_posts()) : 
    echo '<h3>'.$cat->name.'</h3>';

    while ($my_query->have_posts()) : $my_query->the_post(); ?>     
    <?php /*general loop output; for instance: */ ?>
    <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>    <br />  

    <?php endwhile; ?>

    <?php else : 
    echo 'No Posts for '.$cat->name;                
    endif; 
    wp_reset_query();
    endforeach; ?>

utilisez wp_reset_query(); before endforeach pour réinitialiser WP_Query.

1
Arvind Pal