Lopwon Archive 使用文档

2022年10月23日

demo-lopwon-archive.jpg


版本型号:Lopwon Archive
适用程序:Typecho
皮肤类型:插件
插件作者:Lopwon
作者博客:Lopwon.com
发布页面:Lopwon.com/lopwon-archive.html
许可方式:MIT
官方演示:Lopwon Archive


插件说明

插件 Lopwon Archive 的作用是:让你的 Typecho 博客显示年份文章归档,可指定全局显示(如:侧栏)或是指定某篇文章页面显示(如:自建的归档页面),同时具有折叠展开收纳,自动平滑定位显示当前内容的功能。


插件更新

2023年04月30日 发布 Lopwon Archive v1.0.1 修正样式显示问题。

2022年10月23日 发布 Lopwon Archive

使用方法

A 部署插件

1. 将压缩包里的文件夹 LopwonArchive 及其内部的所有文件,上传至目录 usr/plugins 中。

2. 后台》控制台》插件,找到 Lopwon Archive 并启用。

B 调用插件

示例一:在文章页 post.php 的(全局)调用,即所有文章页都会显示。

1. 打开主题文章文件 post.php 在合适位置(如:文末)添加以下代码:

    <?php Typecho_Plugin::factory('Lopwon_Archive')->Lopwon(); ?>

示例二:在文章页 post.php 的指定(单篇)文章调用,即只有指定的一篇文章显示。

1. 打开主题文章文件 post.php 在合适位置(如:文末)添加以下代码:

    <?php if ($this->cid == '文章cid编码') { Typecho_Plugin::factory('Lopwon_Archive')->Lopwon(); } ?>

2. 请把以上代码中(文章cid编码)替换为你要调用插件的页面 cid

示例三:在文章页 post.php 的指定(多篇)文章调用,即限定哪些文章显示。

1. 打开主题文章文件 post.php 在合适位置(如:文末)添加以下代码:

    <?php if (in_array($this->cid, array('文章cid编码一', '文章cid编码二', '以此类推'))) { Typecho_Plugin::factory('Lopwon_Archive')->Lopwon(); } ?>

2. 请把以上代码中(文章cid编码*)替换为你要调用插件的页面 cid 

C 使用技巧

1. 待补充……

This is a message

store