最近在折腾Typecho主题,博主也不太懂PHP,所以只好收集一堆Typecho的调用函数,这里记录一下,以便日后翻查,当然,如果能帮助到别人就更好了。话说Typecho的函数类似于js的调用方法,玩过js的人一看就明白。
1、站点名称
<?php $this->options->title() ?>
2、站点网址
<?php $this->options ->siteUrl(); ?>
3、完整路径标题
<?php $this->archiveTitle(‘ » ‘, < span class=”string”>’’, ‘ | ‘); ?><?php $this ->options->title(); ?>
4、站点说明
<?php $this->options->description() ?>
5、模板文件夹地址
<?php $this->options->themeUrl(); ?>
6、导入模板文件夹内的php文件
<?php $this< /span>->need('.php'); ?>
7、文章或者页面的作者
<?php $this->author(); ?>
8、作者头像
< ?php $this->author->gravatar('40') ?>
此处输出的完整的img标签,40是头像的宽和高。
9、该文作者全部文章列表链接
<?php $this->author->permalink (); ?>
10、该文作者个人主页链接
<?php $this->author->url(); ?>
11 、该文作者的邮箱地址
<?php $this->author->mail(); ?>
12、上一篇与下一篇调用代码
<?php $this->thePrev(); ?> <?php $this->theNext(); ?>
13、判断是否为首页,输出相关内容
<?php if ($this->is(‘index’)): ?>
//首页输出内容
<?php else: ?>
//不是首页输出内容
< span><?php endif; ?>
14、文章或页面,评论数目
<?php $this->commentsNum('No Comments', '1 Comment' , '%d Comments'); ?>
15、截取部份文章(首页每篇文章显示摘要),350是字数
<?php $this->excerpt(350, ‘.. .’); ?>
16、增强版文章截取
<?php
preg_match_all('/<p>.*?<\/p>/im', $this->content, $m);
if(count($m[0])>0){
if(strlen($m[0][0])<200){
$result = $m[0][0].$m[0][1];
} else {
$result = $m[0][0];
}
$result = preg_replace("/<[img|IMG].*?src=[\'|\"](.*?)[\'|\"].*?[\/]?>/","",$result); #注释这一行可让摘要中带图片
echo $result;
} else{
$this->excerpt(300, '...');
}
?>
17、调用自定义字段
<?php $this->fields->fieldName ?>
18、RSS地址
<?php $this->options->feedUrl(); ?>
19、获取最新评论列表
<?php $this->widget('Widget_Comments_Recent')->to($comments); ?> <?php while($comments->next()): ?>
{date}
'); ?>
20、获取标签集合
<?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; ?>
21、展示不同内容
登陆与未登录用户展示不同内容
<?php if($this->user->hasLogin()): ?>
//登陆可见
<?php else: ?>
//未登录和登陆均可见
<?php endif; ?>
22、自动调用img字段
自动调用img字段内容,如果没有,去文章搜索第1个图片。
<?php if (array_key_exists('img',unserialize($this->___fields()))): ?><?php $this->fields->img(); ?><?php else: ?><?php
preg_match_all("/\<img.*?src\=(\'|\")(.*?)(\'|\")[^>]*>/i", $this->content, $matches);
$imgCount = count($matches[0]);
if($imgCount >= 1){
$img = $matches[2][0];
echo <<<Html
{$img}
Html;
}
?><?php endif; ?>
23、文章字数统计
functions.php中写入代码:
function art_count ($cid){
$db=Typecho_Db::get ();
$rs=$db->fetchRow ($db->select ('table.contents.text')->from ('table.contents')->where ('table.contents.cid=?',$cid)->order ('table.contents.cid',Typecho_Db::SORT_ASC)->limit (1));
echo mb_strlen($rs['text'], 'UTF-8');
}
在模板中调用:
<?php echo art_count($this->cid); ?>
24、自动调用第1个文章图片
<?php
preg_match_all("/\<img.*?src\=(\'|\")(.*?)(\'|\")[^>]*>/i", $this->content, $matches);
$imgCount = count($matches[0]);
if($imgCount >= 1){
$img = $matches[2][0];
echo <<<Html
<p class="post-images">
<a href="{$this->permalink}" title="{$this->title}">
<img src="{$img}" alt="{$this->title}">
</a>
</p>
Html;
}
?>
25、边栏不显示博主评论
<?php $this->widget('Widget_Comments_Recent','ignoreAuthor=true')->to($comments); ?>
26、前台登录表单
<form action="<?php $this->options->loginAction()?>" method="post" name="login" rold="form">
<input type="hidden" name="referer" value="<?php $this->options->siteUrl(); ?>">
<input type="text" name="name" autocomplete="username" placeholder="请输入用户名" required/>
<input type="password" name="password" autocomplete="current-password" placeholder="请输入密码" required/>
<button type="submit">登录</button>
</form>
1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505