0、前言
刚接触 Typecho 时,看到很多$this->
这样的写法,又不知道是什么意思,查了文档才知道是特殊语法,可以调用当前页面的一些参数。
1、语法列表
站点名称
1 | <?php $this->options->title() ?> |
站点网址
1 | <?php $this->options ->siteUrl(); ?> |
站点介绍
1 | <?php $this->options->description() ?> |
文章/页面的作者
1 | <?php $this->author(); ?> |
作者头像
1 | <?php $this->author->gravatar('40') ?> |
其中,40
为头像尺寸,可以修改。
上下篇调用
1 | <?php $this->thePrev(); ?> <?php $this->theNext(); ?> |
判断是否为首页,输出相关内容
1 | <?php if ($this->is('index')): ?> //是首页输出内容 <?php else: ?> //不是首页输出内容 <?php endif; ?> |
文章/页面评论数目
1 | <?php $this->commentsNum('No Comments', '1 Comment' , '%d Comments'); ?> |
截取文章内容显示摘要
1 | <?php $this->excerpt(350, '.. .'); ?> |
其中,350
是截取摘要的字数。
调用自定义字段
1 | <?php $this->fields->fieldName ?> |
filedName
为字段名,例如language
字段可以写:
1 | <?php $this->fields->language ?> |
RSS 地址
1 | <?php $this->options->feedUrl(); ?> |
获取最新评论列表
1 | <ul> <?php $this->widget('Widget_Comments_Recent')->to($comments); ?> <?php while($comments->next()): ?> <li><a href="<?php $comments->permalink(); ?>"><?php $comments->author(false); ?></a>: <?php $comments->excerpt(50, '...'); ?></li> <?php endwhile; ?> </ul> |
分类名称
1 | <?php $this->category(',', false); ?> |
获取文章时间归档
1 | <ul> <?php $this->widget('Widget_Contents_Post_Date', 'type=month&format=F Y') ->parse('<li><a href="{permalink}">{date}</a></li>'); ?> </ul> |
获取标签集合
1 | <?php $this->widget('Widget_Metas_Tag_Cloud', 'ignoreZeroCount=1&limit=28')->to($tags); ?> <?php while($tags->next()): ?> <a href="<?php $tags->permalink(); ?>" class="size-<?php $tags->split(5, 10, 20, 30); ?>"><?php $tags->name(); ?></a> <?php endwhile; ?> |
登陆与未登录用户展示不同内容
1 | <?php if($this->user->hasLogin()): ?> //登陆可见 <?php else: ?> //未登录和登陆均可见 <?php endif; ?> |
Typecho $this 常用语法
评论