也许在某些场合下我们想知道自己的某个方法是被谁(哪个方法)调用的?比如下面的例子:
阅读全文...
(一)WordPress基本模板文件,一套完整的WordPress模板包括如下文件,但是只有index.php和style.css是不能缺少的:
- style.css : CSS(样式表)文件,不可缺少版权部分,真正CSS样式表可以放在其他文件;
- index.php : 主页模板,不可缺少;
- archive.php : Archive/Category模板,如果缺少,默认为index.php的显示;
- 404.php : Not Found 错误页模板,如果缺少,默认为index.php的显示;
- comments.php : 留言/回复模板,不可缺少;
- footer.php : Footer模板,可合并到index.php;
- header.php : Header模板,可合并到index.php;
- sidebar.php : 侧栏模板,可合并到index.php;
- page.php : 内容页(Page)模板,如果缺少,默认为index.php的显示;
- single.php : 内容页(Post)模板,如果缺少,默认为index.php的显示;
- searchform.php : 搜索表单模板,可合并到index.php;
- search.php : 搜索结果模板,如果缺少,默认为index.php的显示;
阅读全文...
最新评论