三、Typecho前台编辑文章
<small><a href="<?php $this->options->adminUrl('write-post.php?cid=' . $this->cid); ?>">编辑</a></small> |
四、typecho按ID区分作者贴子
<?php $this->widget('Widget_Archive@myCustomAuthor', 'type=author', 'uid=3')->to
($AuthorPosts); ?>
<?php while($AuthorPosts->next()): ?>
<?php $AuthorPosts->permalink() ?> //其实就是把 $this 换成 $AuthorPosts 其他函数代入即可
<?php endwhile; ?>
|
五、按用户对文章进行归档
<?php $this->author->permalink(); ?> |
六、不同分类在post调用不同的模板
<?php if($this->category == "分类A的缩略名"): ?> 这里是分类A的文章页面HTML代码
<?php else: ?>
这里是分类B的文章页面HTML代码
<?php endif; ?>
|
多重分类的话,中间 else 部分可以自己调整循环次数
七、文章分类列表
1、文章幻灯效果:BufannaoCms_Plugin::slideShow()->to($slider)
2、推荐文章列表:BufannaoCms_Plugin::topShow()->to($top)
3、文章相册效果:BufannaoCms_Plugin::albumShow()->to($album)
4、随机文章列表:BufannaoCms_Plugin::randomShow()->to($randomShow)
5、热评文章列表:BufannaoCms_Plugin::hotShow()->to($hot)
6、评论留言分离:BufannaoCms_Plugin::onlyComment()->to($comments) BufannaoCms_Plugin::onlyMessage()->to($messages)
7、评论足迹功能:BufannaoCms_Plugin::CommentTracks()->to($tracks)
8、内容引用功能:BufannaoCms_Plugin::quoteShow('slug', 'tag')
9、文章分页功能:文章内容中插入< !-- nextpage-->
10、随机标签功能:BufannaoCms_Plugin::randomTag()->to($tags)
11、文章自定义排序:$widget->widget($widget, '', 'orderBy=col')
12、调用文章中的第一个图片:返回图片 $widget->firstImageUrl;
显示图片 $widget->firstImageUrl()。