$args=array(
'post_status' => 'publish',
'paged' => 1,
'posts_per_page' => 3,
'ignore_sticky_posts'=> 1,
'cat' => 137,
/*'meta_query' => array(
array(
'key' => 'topic', // 你的使用的自定义字段1
'value' => 99 // 自定义字段1对应的值
)
),*/
'meta_key' => 'sub_pic'
);
$i = 0;
$query = new WP_Query($args); //新建查询
//The Loop
if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post();
?>
$i++;
endwhile;
endif;
?>
国际气候谈判观察
气候变化是一个全球性的挑战,需要各国通力合作共同应对。我们跟进气候谈判进程,撰写谈判观察文章,开展独立研究,推动跨界对话与公共外交,从民间视角为全球气候治理机制及中国方案建言献策。
查看详细
我们在现场
$args=array(
'post_status' => 'publish',
'paged' => $paged,
'posts_per_page' => 8,
'ignore_sticky_posts'=> 1
);
$query = new WP_Query($args); //新建查询
//The Loop
if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post();
get_template_part( 'content', 'qihou');
endwhile;
twentytwelve_content_nav( 'nav-below');
else:
?>
暂时还没有文章
endif;
?>