A:手把手教Wordpress仿站(基础)

安装源码

需要服务器有php环境(PHP,Mysql,Apeach/Ngnax)

我用的主机宝(环境一键安装工具)

 

 

打开后台突然出现这种情况

Briefly unavailable for scheduled maintenance. Check back in a minute.

这是因为后台在自动更新,需要等待。(一般等待也无用,一直这样,因为被墙了)

解决办法:

在网站根目录,找到.maintenance了,删除它,就可以了。

 

Wordpress后台设置 

设置->固定链接设置

 

文章列表页会用到(用于测试,测试完调成正常篇数)

 

后台插件的删除与安装

删除默认的插件,安装网站用到的插件(AFC插件(高级自定义字段))

问题1:删除不了默认插件

删除不了默认插件,是因为权限问题。
把wp-content目录的权限设置为“777”,就没问题了

A:手把手教Wordpress仿站(基础)_第1张图片

问题2:添加插件一直打不开,最后超时

修改wp-config.php配置文件,最下边中添加
set_time_limit(0);  

对wordpress的最大执行时间无限制

问题3: 发生意外错误,可能WordPress.org或服务器配置文件存在问题。如果该问题持续发生,请考虑去支持论坛寻求帮助

我ping“wordpress.org,cn.wordpress.org”都是250ms,速度太慢了。所以出现这个情况。

 

 

创建主题的基础架构文件

 压缩包在微云,解压上传即可。

网站目录结构,后台的全局变量页,自定义分类都有了。

/*
Theme Name: Brearing
Theme URI: https://www.linqing.cc
Author: Roluce
Author URI: https://www.linqing.cc
Description: this is the first template of roluce.
Version: 1.0
License: License
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Tags

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
php 
/*
Template Name: 下载 
*/ 
?>


A:手把手教Wordpress仿站(基础)_第2张图片

准备HTML文件

首页,新闻列表页,新闻内容页,产品列表页,产品内容页,其他单页

我用仿站小工具

 

复制代码到主题的相关模板页

 上传img,css,js

 替换html(index.php,category.php,single.php)

img/   =>    

你可能感兴趣的:(php,人工智能,数据库)