用这个在数据库中是查询当前设置的主题信息的
SELECT * FROM wp_options WHERE option_name = 'template' OR option_name = 'stylesheet' OR option_name = 'current_theme';
然后更改option_value对应的三个值为新主题的即可!
记录下默认的统一填“default”,2025那款,第1个填Twenty Twenty-Five,第2、3个填twentytwentyfive
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';
本文作者为senhuo,转载请注明。