Created
May 17, 2018 20:46
-
-
Save zaurmag/7fb8b68b3748016a2c9119f8288f244c to your computer and use it in GitHub Desktop.
Деление постов Wordpress по модулю
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array( | |
'posts_per_page' => 15, | |
'cat' => 12 | |
); | |
$postsArr = get_posts( $args ); | |
$chunkPosts = array_chunk($postsArr ,9); | |
foreach($chunkPosts as $posts){ | |
echo '<div class="klients-logos__item">'; | |
foreach($posts as $post){ ?> | |
<a href="<?php the_permalink() ?>"> | |
<?php | |
$w = 'auto'; $h = 70; | |
if (kama_thumb_src()){ | |
echo '<img src="'.kama_thumb_src('w='.$w.'&h='.$h).'" width="'.$w.'" height="'.$h.'" alt="'.get_the_title().'" />'; | |
}?> | |
</a> | |
<?php } | |
echo '</div>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment