以前还在用 Typecho 的时候,就经常自己瞎折腾主题插件,然后就要经常去 docs.typecho.org 查看关于主题插件的常用函数。
为了方便更多的开发者和初学者能更好更快捷地学习制作 Typecho 主题,我把这些经常会用到的函数整理了一下,发出来给小伙伴们使用!
站点名称
text 代码:<?php $this->options->title() ?>
站点网址
text 代码:<?php $this->options->siteUrl(); ?>
完整路径标题
text 代码:<?php $this->archiveTitle(' » ', '', ' | '); ?><?php $this->options->title(); ?>
站点说明
text 代码:<?php $this->options->description() ?>
模板文件夹地址
text 代码:<?php $this->options->themeUrl(); ?>
导入模板文件夹内的 PHP 文件
text 代码:<?php $this->need('.php'); ?>
文章或者页面的作者
text 代码:<?php $this->author(); ?>
作者头像
text 代码:<?php $this->author->gravatar('40') ?>
此处输出的是完整的 img
标签,40
是头像的宽度和高度。
该文作者全部文章列表链接
text 代码:<?php $this->author->permalink (); ?>
该文作者个人主页链接
text 代码:<?php $this->author->url(); ?>
该文作者的邮箱地址
text 代码:<?php $this->author->mail(); ?>
上一篇与下一篇调用代码
text 代码:<?php $this->thePrev(); ?>
<?php $this->theNext(); ?>
判断是否为首页,输出相关内容
text 代码:<?php if ($this->is('index')): ?>
// 首页输出内容
<?php else: ?>
// 不是首页输出内容
<?php endif; ?>
文章或页面,评论数目
text 代码:<?php $this->commentsNum('No Comments', '1 Comment', '%d Comments'); ?>
截取部分文章(首页每篇文章显示摘要)
text 代码:<?php $this->excerpt(200, '...'); ?>
200
是截取的字数。
调用自定义字段
text 代码:<?php $this->fields->fieldName ?>
RSS 地址
获取最新 post
text 代码:<?php $this->widget('Widget_Contents_Post_Recent', 'pageSize=8&type=category')->parse('<li><a href="{permalink}">{title}</a></li>'); ?>
纯文字分类名称,不带链接
text 代码:<?php $this->category(',', false); ?>
获取文章分类列表
text 代码:<ul>
<?php
$this->widget('Widget_Archive@indexyc', 'pageSize=8&type=category', 'mid=1')
->parse('<li><a href="{permalink}" title="{title}">{title}</a></li>'); ?>
</ul>
获取某分类 post
text 代码:<ul>
<?php
$this->widget('Widget_Archive@indexyc', 'pageSize=8&type=category', 'mid=1')
->parse('<li><a href="{permalink}" title="{title}">{title}</a></li>'); ?>
</ul>
获取最新评论列表
text 代码:<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>
首页获取最新文章限制条数
text 代码:<?php while ($this->next()): ?>
<?php if ($this->sequence <= 3): ?>
html
<?php endif; ?>
<?php endwhile; ?>
获取最新评论列表第二个版本,只显示访客评论不显示博主(也就是作者或者说自己发的评论)
text 代码:<?php $this->widget('Widget_Comments_Recent','ignoreAuthor=true')->to($comments); ?>
<?php while($comments->next()): ?>
<li><a href="<?php $comments->permalink(); ?>">
<?php $comments->author(false); ?></a>:
<?php $comments->excerpt(50, '...'); ?></li>
<?php endwhile; ?>
获取文章时间归档
text 代码:<ul>
<?php $this->widget('Widget_Contents_Post_Date', 'type=month&format=F Y')
->parse('<li><a href="{permalink}">{date}</a></li>'); ?>
</ul>
获取标签集合,也就是标签云
text 代码:<?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; ?>
调用该文相关文章列表
text 代码:<?php $this->related(5)->to($relatedPosts); ?>
<?php if ($relatedPosts->have()): ?>
<?php while ($relatedPosts->next()): ?>
<li><a href="<?php $relatedPosts->permalink(); ?>" title="<?php $relatedPosts->title(); ?>"><?php $relatedPosts->title(); ?></a></li>
<?php endwhile; ?>
<?php else : ?>
<li>无相关文章</li>
<?php endif; ?>
隐藏 head 区域的程序版本和模板名称
text 代码:<?php $this->header("generator=&template="); ?>
获取读者墙
text 代码:<?php
$period = time() - 999592000; // 时段: 30 天, 单位: 秒
$counts = Typecho_Db::get()->fetchAll(Typecho_Db::get()
->select('COUNT(author) AS cnt','author', 'url', 'mail')
->from('table.comments')
->where('created > ?', $period )
->where('status = ?', 'approved')
->where('type = ?', 'comment')
->where('authorId = ?', '0')
->group('author')
->order('cnt', Typecho_Db::SORT_DESC)
->limit(25)
);
$mostactive = '';
$avatar_path = 'http://www.gravatar.com/avatar/';
foreach ($counts as $count) {
$avatar = $avatar_path . md5(strtolower($count['mail'])) . '.jpg';
$c_url = $count['url']; if ( !$c_url ) $c_url = Helper::options()->siteUrl;
$mostactive .= "<a href='" . $c_url . "' title='" . $count['author'] . " (参与" . $count['cnt'] . "次互动)' target='_blank'><img src='" . $avatar . "' alt='" . $count['author'] . "的头像' class='avatar' width='32' height='32' /></a>\n";
}
echo $mostactive;
?>
登录与未登录用户展示不同内容
text 代码:<?php if($this->user->hasLogin()): ?>
登录可见
text 代码:<?php else: ?>
未登录和登录均可见
text 代码:<?php endif; ?>
重返独立博客,写板子,查文章,谢谢分享。
暂无点赞