Can I change the theme name in WordPress?

前端 未结 5 1671
北恋
北恋 2021-01-31 15:40

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

5条回答
  •  清歌不尽
    2021-01-31 16:07

    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:

    1. Find an option named theme_mods_old-theme in the table wp_options
    2. Copy the option_value (it is a text holding the theme customizations in a special WordPress format)
    3. Put the copied value in a new option named theme_mods_new-theme in the wp_options table.

提交回复
热议问题