EMLOG大前端扩展
EMLOG大前端主题收费了,作者已经不为免费版提供更新了~
这年头还是得靠钱,不然就得靠自己
4.2更新了一个文章归档功能,我在这里发出来
此功能也研究了半天嘞,忘大家支持!!
演示:http://www.aeink.com/archive.html
教程开始:
1.在主题目录复制一份page.php文件,重命名page-archive.php并打开,清空其中的代码,把以下代码复制进去 然后保存。
2.在网站后台新建页面,然后在自定义页面模板处填上page-archive 保存后看看效果,如出现错位请按F12慢慢调试。
最后打开include/lib/cache.php 文件找到
private $logalias_cache;
在其下面添加下面这句;
private $loglists_cache;
然后在合适的地方插入下面代码,并在网站后台更新下缓存数据即可。
/** * 文章归档列表缓存 */ private function mc_loglists() { $query = $this->db->query('select gid,title,date from ' . DB_PREFIX . "blog WHERE hide='n' and checked='y' and type='blog' ORDER BY date DESC"); $loglists_cache = array(); while ($row = $this->db->fetch_array($query)) { $loglists_cache[]= $row; } $cacheData = serialize($loglists_cache); $this->cacheWrite($cacheData, 'loglists'); }
打开/templates/emlog_dux/style/main.css文件
找到.cmslist li.first div{color:#999;font-size:12px;padding-top:4px;}在其位置下粘贴以下CSS
.page_archive_item {overflow:hidden;margin-bottom:20px;border-bottom:1px solid #eee;} .page_archive_item h2 {float:left;margin-bottom:10px;font-size:20px;font-weight:normal;color:#F15A23;line-height:20px;margin-top:0;} .page_archive_list {padding-left:20px;margin:0 0 20px 140px;} .page_archive_list li {margin-left:20px;margin-bottom:6px;background:url(../Images/li.gif) no-repeat 0 10px;padding-left:20px;line-height:25px;} .page_archive_list li time {width:40px;display:inline-block;} .page_archive_list li a:hover {text-decoration:underline;}
转载请注明出处 AE博客|墨渊 » EMLOG扩展|文章归档 - 适用EMLOG大前端
发表评论