Created
March 13, 2016 20:40
-
-
Save MasterHans/5edbe6806dc770f8d083 to your computer and use it in GitHub Desktop.
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
/*Чтобы работала штатная пагинация надо в массив запрос добавить параметр 'paged'=>$paged*/ | |
$myquery = new WP_Query(['cat' => $cat_id, 'orderby' => 'date', 'order' => 'ASC', 'paged'=>$paged]); | |
if ($myquery -> have_posts()) : ?> | |
<?php while ($myquery -> have_posts()) : $myquery -> the_post(); ?> | |
<?php echo the_post_thumbnail( [355,148] ); ?> | |
<h3><?php the_title() ?></h3> | |
<?php the_excerpt(); ?> | |
<a href="<?php the_permalink(); ?>" title="<?php the_title() ?>">УЗНАТЬ БОЛЬШЕ</a> | |
<?php endwhile; ?> | |
<div class="theme-pagination"> | |
<?php kriesi_pagination(); ?> | |
</div> | |
<?php else : ?> | |
<div class="search-result">в эту рубрику пока ничего не написано.</div> | |
<?php endif; wp_reset_postdata(); // сбрасываем переменную $post ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment