typecho常用代码片段收集
typecho 获取最新文章,指定数量
<?php $this->widget('Widget_Contents_Post_Recent','pageSize=5')->to($news);?>
<?php if($news->have()):?>
<?php while($news->next()): ?>
<a href="<?php $news->permalink();?>">
<h2 class="card-title"><?php $news->title(); ?></h2>
</a>
<?php endwhile; ?>
<?php endif; ?>
和在使用博客的那个<?php while ($this->next()) : ?><?php endwhile; ?>代码一样的用法,$news和$this一样。
'pageSize=5'便是输出5篇最新文章,数字自己定义即可。
获取某个分类下的文章列表
$category = $this->widget('Widget_Archive@category', 'pageSize=6&type=category', 'mid=1');
while($category->next()){
// todo here
... ...
}
mid表示分类id,type指定获取分类文章
获取某关键词的搜索结果
$search = $this->widget('Widget_Archive@search', 'pageSize=10&type=search', 'keywords=typecho');
while($search->next()){
// todo here
... ...
}
type指定搜索类型,keywords指定搜索关键词
获取某个tag的文章列表
$tags = $this->widget('Widget_Archive@tag', 'pageSize=10&type=tag', 'mid=2');
//或者:$tags = $this->widget('Widget_Archive@tag', 'pageSize=10&type=tag', 'slug=tag_name');
while($tags->next()){
// todo here
... ...
}
type指定tag类型,mid表示tag的id,slug表示tag的缩写名
获取某篇特定的文章
$post = $this->widget('Widget_Archive@post', 'type=post', 'cid=1');
$post->title();
... ...
type指定post进而获取文章,cid指定文章id
发表评论
热门文章
Spimes主题专为博客、自媒体、资讯类的网站设计....
一款个人简历主题,可以简单搭建一下,具体也比较简单....
仿制主题,Typecho博客主题,昼夜双版设计,可....
用于作品展示、资源下载,行业垂直性网站、个人博客,....
热评文章
最新评论
Z.
11月29日
博主你好,Deng插件,这个点击不进去,提示这个(Warning: require_once(/www/wwwroot/w.zzy2020.com/usr/plugins/Deng/Deng/html/profile.php): failed to open stream: No such file or directory in /www/wwwroot/w.zzy2020.com/Fresh/extending.php on line 26
Fatal error: require_once(): Failed opening required '/www/wwwroot/w.zzy2020.com/usr/plugins/Deng/Deng/html/profile.php' (include_path='.:/www/server/php/72/lib/php') in /www/wwwroot/w.zzy2020.com/Fresh/extending.php on line 26)
点都德
3天前
:喷::喜欢::怒::黑线: