前面给大家介绍了《
page.php也就是页面,可能大家不太理解页面是什么意思,博客上的所有网页不都是页面吗?我们这里指的页面一个单独的页面,如"关于"、"联系方式"等,可以在WordPress后台 - 页面,进行页面的添加修改等。
这个page.php有很多东西跟single.php也都是相通的,或者基本都一样,这里我们对部分内容也不做太多的解析,直接上结果,如果有不懂的可以翻翻WordPress主题制作全过程(八):制作index.php。
立即学习“PHP免费学习笔记(深入)”;
1、添加标题
搜索代码:
改成:
1
2
<!-- Column 1 / Content -->
<h2><?php the_title(); ?></h2>
2、添加页面内容
1
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vel porta erat. Quisque sit amet risus at odio pellentesque sollicitudin. Proin suscipit molestie facilisis. Aenean vel massa magna. Proin nec lacinia augue. Mauris venenatis libero nec odio viverra consequat. In hac habitasse platea dictumst.</p>
改成:
1
<?php the_content(); ?>
立即学习“PHP免费学习笔记(深入)”;
3、添加评论框
将 与 之间的所有代码删除(包括)
替换成:
1
<?php comments_template(); ?>
立即学习“PHP免费学习笔记(深入)”;
4、添加查询语句
搜索代码:
改成:
1
2
<!-- Column 1 / Content -->
<?php if (have_posts()) : the_post(); update_post_caches($posts); ?>
查找:
1
<?php get_sidebar(); ?>
改成:
1
2
3
<?php else : ?><div>
<p> 没有找到你想要的页面!</p>
<pre class="brush:php;toolbar:false">