$args=array(
'post_status' => 'publish',
'paged' => 1,
'posts_per_page' => 3,
'ignore_sticky_posts'=> 1,
'cat' => 214,
/*'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;
?>
关于海洋治理
“全球公域”(global commons)是“处于国家管辖之外的资源或区域”1,这些区域包括公海(水体和海底)、大气层、南极和外太空。全球公域不为任何个人、组织或国家单独占有或管辖,属于主权国家之外的“无主物”。全球公域的开发与全人类的生存发展和根本福祉...
查看详情
$args=array(
'post_status' => 'publish',
'paged' => $paged,
'posts_per_page' => 8,
'ignore_sticky_posts'=> 1,
'cat' => 214
);
$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_nav2( 'nav-below', $query);
else:
?>
暂时还没有文章
endif;
?>