Typecho操作BufannaoCms插件打造成CMS网站

  BufannaoCms插件是由不烦恼开拓的一款typecho插件,通过BufannaoCms插件可以等闲地把typecho打造成独具特色的CMS网站。插件实现了文章幻灯片、推荐文章列表、文章相册、随机文章、热评文章、评论留言疏散、评论足迹、内容引用、文章分页、随机标签、文章自界说排序和文章缩略图成果。

作者给出的BufannaoCms插件挪用代码:

文章幻灯结果:

BufannaoCms_Plugin::slideShow()->to($slider)

推荐文章列表:

BufannaoCms_Plugin::topShow()->to($top)

文章相册结果:

BufannaoCms_Plugin::albumShow()->to($album)

随机文章列表:

BufannaoCms_Plugin::randomShow()->to($randomShow)

热评文章列表:

BufannaoCms_Plugin::hotShow()->to($hot)

评论留言疏散:

BufannaoCms_Plugin::onlyComment()->to($comments) BufannaoCms_Plugin::onlyMessage()->to($messages)

评论足迹成果:

BufannaoCms_Plugin::CommentTracks()->to($tracks)

内容引用成果:

BufannaoCms_Plugin::quoteShow('slug', 'tag')

文章分页成果:文章内容中插入< !--nextpage-->

随机标签成果:

BufannaoCms_Plugin::randomTag()->to($tags)

文章自界说排序:

$widget->widget($widget, '', 'orderBy=col')

挪用文章中的第一个图片:返回图片

$widget->firstImageUrl;

显示图片

$widget->firstImageUrl()

挪用代码利用要领:

  插件作者给出的挪用代码并不是直接帖上去利用的,提供的仅是个相关函数,还需要博主动手举办添加。下面是一个显示随机文章的例子,利用轮回语句while loop输出,有乐趣的伴侣可以触类旁通挪用其它的,研究过z-blog可能wordpress模板的伴侣应该很容易领略:

<?php BufannaoCms_Plugin::randomShow()->to($randomShow); ?>
<ul>
<?php while($randomShow->next()): ?>
<li><a href=http://down.chinaz.com/"<?php $randomShow->permalink(); ?>"><?php $randomShow->title(); ?></a></li>
<?php endwhile; ?>
</ul>

插件利用要领:

  下载插件,上传插件文件夹到usr/plugins/目次下,登岸博客靠山,在插件列表中激该死插件

  点击插件的“配置”进入插件参数配置界面,可以对文章的显示数量举办修改

  BufannaoCms插件下载:DownLoad 点击下载

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/10186.html