我们在wordpress主题theme配置的时候,会从网站上下载比较流行的theme,使自己的blog看着很酷。也有不顺利的时候,你下载的theme有bug或者下载包出问题了,安装过后你的web页面不能在访问了。悲催,想通过web将theme改回去也不行。我们只能够通过后台数据库来手动修改theme了。
方法如下
:打开PHPMyAdmin,选择对应的数据库,在sql文本框中输入一下查询语句,我们就能得到当前的theme
PHPcode2">SELECT * FROM wp_options WHERE option_name = 'template' OR option_name = 'stylesheet' OR option_name = 'current_theme'; 原文链接:https://www.f2er.com/wordpress/15385.html