咱们在wordpress主题theme配置的时分,会从网站上下载比拟盛行的theme,使本人的blog看着很酷。也有不顺利的时分,你下载的theme有bug或许下载包出成绩了,装置当时你的web页面不能在拜访了。悲催,想经过web将theme改回去也不行。咱们只可以经过后盾数据库来手动修正theme了。
办法如下:
关上phpMyAdmin,抉择对应的数据库,在sql文本框中输出一下查问语句,咱们就能失去以后的theme
SELECT *
FROM wp_options
WHERE option_name = 'template'
OR option_name = 'stylesheet'
OR option_name = 'current_theme';
咱们能够将对应的字段修正为咱们的theme,零碎自带的有 ‘classic’ 和‘default’.你能够抉择其一,这里有两种办法,
**,咱们能够点击左侧编辑符号进行手动修正,
第二,咱们能够执行一下sql语句:
UPDATE wp_options SET option_value = 'default' WHERE option_name = 'template';
UPDATE wp_options SET option_value = 'default' WHERE option_name = 'stylesheet';
UPDATE wp_options SET option_value = 'default' WHERE option_name = 'current_theme';
以上就是安达网络工作室关于《wordpress 如何从后台数据库修改theme(图文教程)》的一些看法。更多内容请查看本栏目更多内容!
作者 查问和某些作者(用户)无关的文章,能够应用 4 个参数: author(整数):用户 ID author_name(...
1.用分类做为导航拦 <?php wp_list_categories('depth=2&title_li=0&orderby=name&show_count=0');?> 把这句...
the_post_thumbnail the_post_thumbnail 在 WordPress 中次要用来打印文章中设定的缩略图,而 get_the_post...
本文实例讲述了WordPress文章题目链接增加正在加载中提醒的办法。分享给大家供大家参考。详细剖析如下: 咱...
WordPress菜单CSS类选项设置办法: 1、点开WordPress菜单设置页面右上角“显示选项”,勾选外面的...
要害字形容:应用 插件 Wordpress 能够 文件 需求 网站 目录 网友 Wordpress 的主题能够让你的 Wordpress ...