菜单
控制台
概要
个人设置
插件
外观
编辑文件 functions.php
备份
撰写
撰写文章
创建页面
管理
文章
独立页面
评论
分类
标签
文件
用户
友情链接
设置
基本
评论
阅读
永久链接
测试管理员
登出
网站
编辑文件 functions.php
可以使用的外观
编辑
Minimalism
外观
设置外观
编辑源码
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; function themeConfig($form) { $logoUrl = new Typecho_Widget_Helper_Form_Element_Text('logoUrl', NULL, NULL, _t('站点LOGO地址'), _t('在这里填入一个图片URL地址, 以在网站标题前加上一个LOGO')); $form->addInput($logoUrl); $sidebarBlock = new Typecho_Widget_Helper_Form_Element_Checkbox('sidebarBlock', array('ShowRecentPosts' => _t('显示最新文章'), 'ShowRecentComments' => _t('显示最近回复'), 'ShowCategory' => _t('显示分类'), 'ShowArchive' => _t('显示归档'), 'ShowOther' => _t('显示其它杂项')), array('ShowRecentPosts', 'ShowRecentComments', 'ShowCategory', 'ShowArchive', 'ShowOther'), _t('侧边栏显示')); $form->addInput($sidebarBlock->multiMode()); } /** * 获取必应每日壁纸、故事 * @author Warner * @link https://github.com/WarnerYang * @return string */ function bing(){ //删除之前的图片和故事 for ($i=1; $i <=30 ; $i++) { @unlink(date('Ymd',time()-24*3600*$i).'.jpg'); @unlink(date('Ymd',time()-24*3600*$i).'.json'); } $img_name = date('Ymd').'.jpg'; //每日图片 $coverstory = date('Ymd').'.json'; //每日故事 json格式 if (!file_exists($img_name)) { $url = "http://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1"; $result = file_get_contents($url); $output = json_decode($result,true); $img_url = $output["images"][0]["url"]; $img = file_get_contents("http://cn.bing.com".$img_url); @file_put_contents($img_name,$img); //写入图片 } if (!file_exists($coverstory)) { $json = file_get_contents('http://cn.bing.com/cnhp/coverstory/'); @file_put_contents($coverstory,$json); //写入文本 } $coverstory = json_decode(file_get_contents($coverstory),true); return $coverstory; } /** * 获取文章第一张图片地址 * @author Warner * @link https://github.com/WarnerYang * @param $cid 文章id * @return string */ function img_thumb($cid) { $db = Typecho_Db::get(); $rs = $db->fetchRow($db->select('table.contents.text') ->from('table.contents') ->where('table.contents.cid=?', $cid) ->order('table.contents.cid', Typecho_Db::SORT_ASC) ->limit(1)); $imgUrl = []; $num = preg_match_all("/http(.*?)(.jpg|.png)/", $rs['text'], $imgUrl); if($num==0){ return ''; }else{ return $imgUrl[0][0]; } } /* function themeFields($layout) { $logoUrl = new Typecho_Widget_Helper_Form_Element_Text('logoUrl', NULL, NULL, _t('站点LOGO地址'), _t('在这里填入一个图片URL地址, 以在网站标题前加上一个LOGO')); $layout->addItem($logoUrl); } */
保存文件
模板文件
404.php
about.php
archive.php
comments.php
footer.php
functions.php
guestbook.php
header.php
index.php
page.php
post.php
sidebar.php
Typecho
由
Typecho
强力驱动, 版本 1.2.1
帮助文档
•
支持论坛
•
报告错误
•
资源下载