Answer the question
In order to leave comments, you need to log in
How to sort posts in WP?
Posts on the page are displayed as follows
<div class="uk-grid uk-grid-collapse vtop">
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1;
$posts = query_posts(array('cat'=>$category_id,'posts_per_page'=>'9','order'=>'DESC','paged'=>$page));?>
<?php if (have_posts()) : while (have_posts()) : the_post(); // если посты есть - запускаем цикл wp ?>
<?php get_template_part('template/loop','product'); // для отображения каждой записи берем шаблон loop.php ?>
<?php endwhile;?>
<?php endif;?>
</div>
$posts = query_posts(array('cat'=>$category_id,'posts_per_page'=>'9','orderby' => 'title', 'order' => 'DESC','paged'=>$page));?>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question