嗨,我想知道您如何手动更改 wordpress 主题?选择主题的配置是文件还是数据库?
我尝试搜索它所在的表,该表声明它将在“wp-options”表中作为样式或模板,但是这些是针对 Wordpress 2.*,我没有找到任何关于 3.6 的结论。但是,在查看此表时,没有与主题匹配的选项。当我使用 WP Admin 更改主题并且没有注意到添加任何新选项时。
我想知道他们是否对指示激活主题的设置进行了任何更改。
谢谢
注意:我之前问过一个类似的问题,但我的问题不是很具体。
Actually, its the combination of two options, take a look on this query result:
SELECT * FROM wp_options WHERE option_name IN('template', 'stylesheet');
Of course you can simply change its option_value field and Wordpress will look for the matching folder and stylesheet, otherwise it will give you an awful blank screen.