https://github.com/yaoshanliang/wordpress
A framework based on wordpress
https://github.com/yaoshanliang/wordpress
wordpress wordpress-plugin wordpress-theme
Last synced: 2 months ago
JSON representation
A framework based on wordpress
- Host: GitHub
- URL: https://github.com/yaoshanliang/wordpress
- Owner: yaoshanliang
- License: other
- Created: 2018-01-20T08:00:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-05T02:20:55.000Z (over 8 years ago)
- Last Synced: 2025-02-05T10:50:35.127Z (over 1 year ago)
- Topics: wordpress, wordpress-plugin, wordpress-theme
- Language: PHP
- Homepage:
- Size: 17.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# A framework based on wordpress
## 特点
* 禁用google字体
* 关闭版本升级提示
* 替换Gravatar链接
* 优化系统打开速度
* 移除其它无用内容
## 安装
* 克隆代码
* 修改根目录wp-config文件为自己的数据库地址、账号、密码
define('DB_NAME', '');
define('DB_USER', '');
define('DB_PASSWORD', '');
define('DB_HOST', '');
* 导入根目录wordpress.sql默认数据
* 修改数据库配置为项目网址
update `wp_options` set `option_value` = '项目网址' where `option_id` = 1;
update `wp_options` set `option_value` = '项目网址' where `option_id` = 2;
## 访问
* 账号: admin, 密码: admin