标签: 主题
解决 wordpress 安装主题或插件需要 FTP 问题
步骤
1. 新建临时目录
使用 FTP 或者 SFTP 软件 (推荐 xftp5) 连接网站文件目录,进入 wp-content 目录,新建 tmp 文件夹,设置文件夹的权限为 777
2. 修改 Config 配置
下……
Wordpress 后台用户显示注册时间
在主题的 functions.php 里添加下面的代码:
class RRHE {
// Register the column - Registered
public static function registerdate($columns) {
$c……
WordPress 底部显示页面加载时间
方法
1. 将以下代码加入到主题的 functions.php 中
//页面加载时间自动检测
function wp_page_speed() {
date_default_timezone_set( get_option( 'timezone_s……
wordpress 使用 Video.js 纯代码为文章插入直播 m3u8 视频播放器的方法
大家也知道,wordpress 自带的视频播放器,只能播放视频文件,比如 MP4/WebM 和 Ogg,不能播放流媒体文件。
所以就找了个可以直接在 wordpress 文章网页中插入 m3u8 直……
wordpress 文章缩略图出错修复
提示
A TimThumb error has occured
The following error(s) occured:
An error occured fetching image.
这样的错误,修复方法
可惜我自己把以前图片给删掉了……