MENU

typecho主题常用化码记录(二)

February 5, 2023 • 建站教程阅读设置


/*头部HEAD常用
<?php $this->keywords('_'); ?>//关键词
<?php $this->options->title(); ?>//站点名称
<?php $this->options->description(); ?>//站点描述
<?php $this->archiveTitle(); ?>//标题
<?php $this->options->themeUrl('ie.css'); ?>//模板路径
<?php $this->options->siteUrl(); ?>//主页网址
<?php $this->options->feedUrl(); ?>
<?php $this->options->commentsFeedUrl(); ?>
<?php $this->pageNav(); ?>//分页
<?php $this->options->generator(); ?>//版本号

/*文章页面常用
<?php $this->title(); ?>//标题
<?php $this->category(','); ?>//分类
<?php $this->tags(', ', true, ''); ?>//标签
<?php $this->date('F jS, Y') ?>//时间
<?php $this->content(); ?>//内容
<?php $this->thePrev('&laquo; %s', ''); ?>//上一篇
<?php $this->theNext('%s &raquo;', ''); ?>//下一篇


常用调用作者信息
<?php $this->author() ?>  //作者名称
<?php $this->author->permalink(); ?>  //作者文章列表连接
<?php $this->author->url(); ?>
<?php $this->author('url'); ?>  //作者主页
<?php $this->author->mail(); ?>
<?php $this->author('mail'); ?>  //作者邮箱
<?php $this->author->gravatar(); ?>  //作者头像

评论都信息
<?php $comments->author(); ?>  //带连接的作者名
<?php $comments->author('', false); ?>  //不带连接的作者名
Last Modified: April 15, 2023