显示WordPress全部文章示例代码如下:$args = array('ignore_sticky_posts' => 1,//忽略sticky_posts,即不置顶);$query = new WP_Query( $args );if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post(); ?>在循环中你可以使用WordPress的调用函数都是可以的,根据需要修改即可。