您已经从管理员创建了一个简单的页面名称新闻,并显示在博客菜单下。你必须创建一个页面模板并使用WordPress循环来显示你的帖子。您可以在页面模板中使用此代码,并在发布页面时选择模板。
$args = array(
\'post_type\' => \'post\',
\'order\' => \'DESC\',
);
$the_query = new WP_Query( $args );
while ($the_query -> have_posts()) : $the_query -> the_post();
php the_title();
the_excerpt(__(\'(more…)\'));
endwhile;
您可以根据需要传递更多参数来过滤循环。