博客程序Typecho主题模版制作常用调用变量和函数,参数分享
Typecho主题模版制作常用调用函数
站点名称
<?php $this->options->title(); ?>
域名地址
<?php $this->options->siteUrl(); ?>
后台地址
<?php $this->options->adminUrl(); ?>
完整路径标题,比如 文章 站点
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
站点说明
<?php $this->options->description(); ?>
模版文件夹地址
<?php $this->options->themeUrl(); ?>
作者名字
<?php $this->author(); ?>
当前登陆用户名字
<?php $this->user->screenName(); ?>
退出链接
<a href="<?php $this->options->logoutUrl(); ?>"><?php _e('退出'); ?></a>
rss地址
<?php $this->options->feedUrl(); ?>
作者头像
<?php $this->options->siteUrl(); ?>
参数说明
此函数是完整 img 标签,200代表长和宽
该文作者全部文章列表链接
<?php $this->options->siteUrl(); ?>
1
该文作者个人主页链接
<?php $this->options->siteUrl(); ?>
2
该文作者的邮箱地址
<?php $this->options->siteUrl(); ?>
3
rss评论
<?php $this->options->siteUrl(); ?>
4
引用模版文件夹内php文件
<?php $this->options->siteUrl(); ?>
5
参数说明
可以使用相对路径获取上级目录php文件
获取最新post
<?php $this->options->siteUrl(); ?>
6
纯文字分类名称,不带链接
<?php $this->options->siteUrl(); ?>
7
获取文章分类列表
<?php $this->options->siteUrl(); ?>
8
获取某分类post
<?php $this->options->siteUrl(); ?>
9
获取最新评论列表
<?php $this->options->adminUrl(); ?>
首页获取 最新文章 代码限制条数 (特别感谢蚂蚱)
<?php $this->options->adminUrl(); ?>
1
获取最新评论列表第二个版本,只显示访客评论不显示博主也就是作者或者说自己发的评论
<?php $this->options->adminUrl(); ?>
2
获取文章时间归档
<?php $this->options->adminUrl(); ?>
3
获取标签集合,也就是标签云
<?php $this->options->adminUrl(); ?>
4
文章循环
<?php $this->options->adminUrl(); ?>
5
调用该文相关文章列表
<?php $this->options->adminUrl(); ?>
6
各种列表页面标题,如标签分类
<?php $this->options->adminUrl(); ?>
7
文章或页面,标题
<?php $this->options->adminUrl(); ?>
8
文章上一篇
<?php $this->options->adminUrl(); ?>
9
文章下一篇
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
文章或页面,链接
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
1
文章或页面,发表时间
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
2
文章或页面,评论数目
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
3
文章或页面,内容,括号里有内容,如果加入了more就会自动生成链接
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
4
文章所在分类,链接形式
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
5
文章,所加标签
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
6
列表页分页
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
7
隐藏head区域的程序版本和模版名称
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
8
获取读者墙
<?php $this->archiveTitle(' » ', '', ' - '); ?><?php $this->options->title(); ?>
9
登陆与未登录用户展示不同内容
<?php $this->options->description(); ?>
导航页面列表调用隐藏特定的页面 这个演示隐藏了album和search两个页面
<?php $this->options->description(); ?>
1
参数说明
9.0版typecho支出在后台管理页面编辑时选择隐藏页面
Typecho归档页面(牧风提供,牧风演示:http://mufeng.me/archives)
<?php $this->options->description(); ?>
2
更多收集整理中
插件类//插件在下载地址:http://docs.typecho.org/plugins/