Php foreach loop wrapping every 2 items

后端 未结 6 1343
梦谈多话
梦谈多话 2021-02-06 08:03
query(a
6条回答
  •  一整个雨季
    2021-02-06 08:31

    This is in Wordpress but understands it and it will help you.

     'slides', 'order'=> 'DESC', 'post_status' => 'publish', 'posts_per_page' => -1) );
                   $posts = $query->posts; 
                   $numOfCols = 2;
                    $rowCount = 0;
                   if(!empty($posts)){ ?>
    
                       

提交回复
热议问题