我知道分页在WP\\u查询中不像在其他循环类型中那样直接,但通常我对它没有问题。
我正在为客户编辑一个网站,这是他们当前的循环;
<?php
$temp_post = $post;
$args = array(
\'ignore_sticky_posts\' => 1,
\'posts_per_page\' => 5,
\'post_type\' => \'project\'
);
$projects = new WP_Query( $args );
while ($projects->have_posts()) : $projects->the_post();
?>
<!-- loop content -->
<?php
endwhile;
kriesi_pagination();
$post = $temp_post;
?>
我尝试了我通常的使用方法
$wp_query
而不是
$portfolio
但那没用。
有人有什么想法吗?