我会这样做:
首先,在wp admin中创建一个页面。然后创建一个类似mypage的文件。php。将其保存在主题中,并在其顶部添加一个,告诉wordpress这是一个自定义页面模板:
<?php /* Template Name: Custompage */ get_header(); ?>
注意:它也会调用你的标题
然后使用插入自定义循环get_posts() 像这样:
<?php global $post; // required
$args = array(\'category\' => 9); // include category 9
$custom_posts = get_posts($args);
foreach($custom_posts as $post) : setup_postdata($post);
// put here what you want to appear for each post like:
//the title:
the_title();
// an excerpt:
the_excerpt();
//and so on...
endforeach;
?>
最后,返回管理员,在页面的选项中,“页面属性”框中应有一个下拉菜单。选择“Custompage”模板或您指定的任何名称。