1、复制一个page.php文件改为notes.php,并在WordPress后台新建一个页面,固定链接地址改为notes(这个notes可随意,但必须跟notes.php相对应)。
2.在notes.php最顶部添加代码
<?php
/*
Template Name: Notes
*/
?>
3.在这个notes.php文件中找到以下代码
<?php the_content(); ?>
并在该代码后面添加以下代码
<?php
$cats = get_categories();
foreach ( $cats as $cat ) {
query_posts( 'showposts=10&cat=' . $cat->cat_ID );
?>
<h3><?php echo $cat->cat_name; ?></h3>
<ul class="sitemap-list">
<?php while ( have_posts() ) { the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php } wp_reset_query(); ?>
</ul>
<?php } ?>
4.WordPress后台新建页面,模板选择Notes,在菜单添加这个页面即可。