How can I change the theme name in WordPress and where?
Can I also change the folder name theme1244 in public/wp-content/themes/theme1244
without having pro
All the above is correct, but is not enough. After you rename the theme, e.g. rename the folder old-theme
--> new-theme
, you should copy the theme customizations (colors, header / footer, widgets, etc.) from the old theme to the new theme. This is done directly in the MySQL database:
theme_mods_old-theme
in the table wp_options
option_value
(it is a text holding the theme customizations in a special WordPress format)theme_mods_new-theme
in the wp_options
table.