我正在尝试根据正在查看的页面类型使用不同的 WP_Query 对象。我想这样做而不必一遍又一遍地重复循环。我只想使用带有条件的不同 WP_Query 语句。这是可能的,还是有其他方法可以做到这一点?现在我的页面上只有空输出。代码如下。
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
// retrieve posts based on category or pages
$args=array(
'category_name'=>'name',
'posts_per_page'=>10,
'paged'=>$paged
);
if (is_page()) {
//create a new instance
$wp_query = new WP_Query($args);
}
else {
//create a new instance
$wp_query = new WP_Query();
}
// the Loop
while ($wp_query->have_posts()) : $wp_query->the_post();
// set $more to 0 in order to only get the first part of the post
global $more;
$more = 0;
// Do post layout here
endwhile;