返回顶部
📍 正在感知时空状态...

文章 2022年11月30日

Typecho前台登录

前言前台登录是个很方便的功能,无论是作为个人博客还是多人博客,前台登录都会节省用户时间。代码<form action="<?php $this->options->loginAction()?>" method="post" name="login" rold="form"> <input type="hidden" name="referer" value="<?php...

文章 2022年11月30日

Typecho更换Gravatar头像源,QQ邮箱取用qq头像教程

全站修改法在网站根目录下的 config.inc.php 文件,加入以下代码。define('__TYPECHO_GRAVATAR_PREFIX__', 'https://gravatar.loli.net/avatar/'); //更换头像源这里使用的是 loli.net 的头像源,如果有需要也可以换成别的。P.S 更多镜像源(直接替换上边的地址就行了)http://gravatar.ihuan.me/avatar/https://gravatar.proxy.ustclug.org/https://cdn.v2ex.com/gravatar/http://dn-qiniu-avatar.qb...

文章 2022年11月30日

jQuery - 很棒的下滑自动隐藏导航栏

我发现了一个很棒的自动隐藏导航栏。导航栏演示(或参考本站):https://codepen.io/Mhmdhasan/pen/mAdaQE导航栏脚本:$(document).ready(function () {   'use strict';    var c, currentScrollTop = 0,        navbar = $('nav');   ...

Typecho 人性化评论时间
文章 2022年11月25日

Typecho 人性化评论时间

评论时间显示多少秒,多少天,多少时发帖代码。<?php function timesince($older_date,$comment_date = false) { $chunks = array( array(86400 , '天'), array(3600 , '小时'), array(60 , '分'), array(1 , '秒'), ); $newer_date = time(); $since = abs($newer_date - $older_...

文章 2022年11月25日

typecho伪静态

一、ApacheRewriteEngine On  # 下面是在根目录,文件夹要修改路径,如 /typecho/,同时 RewriteRule 也要跟着变  RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f  RewriteCond %{REQUEST_FILENAME} !-d  RewriteRule ^(.*)$ /index.php/$1 [L]外加一个顶级域名和二级域名的跳转#&nb...