WP is reverting to default theme
-
I upgraded recently from 2.0.x to 2.1 and at the same time, started using the blacknblue theme.
However, periodically, the theme is reverting back to the ‘default’ theme: this change is visible in the database:
mysql> select * from wp_options where option_name=’template’;
+———–+———+————-+———————+————-+————–+————–+—————+——————–+——————–+———-+
| option_id | blog_id | option_name | option_can_override | option_type | option_value | option_width | option_height | option_description | option_admin_level | autoload |
+———–+———+————-+———————+————-+————–+————–+—————+——————–+——————–+———-+
| 54 | 0 | template | Y | 1 | default | 20 | 8 | | 1 | yes |
+———–+———+————-+———————+————-+————–+————–+—————+——————–+——————–+———-+
1 row in set (0.00 sec)And when I change the theme via the WP interface, it gets corrected:
mysql> select * from wp_options where option_name=’template’;
+———–+———+————-+———————+————-+————–+————–+—————+——————–+——————–+———-+
| option_id | blog_id | option_name | option_can_override | option_type | option_value | option_width | option_height | option_description | option_admin_level | autoload |
+———–+———+————-+———————+————-+————–+————–+—————+——————–+——————–+———-+
| 54 | 0 | template | Y | 1 | blacknblue | 20 | 8 | | 1 | yes |
+———–+———+————-+———————+————-+————–+————–+—————+——————–+——————–+———-+
1 row in set (0.00 sec)However, something in ‘normal use’ causes this to periodically revert to ‘default’. What on earth is going on? The revert times don’t seem to coincide with anything in particular that I can see.
Any ideas?
- The topic ‘WP is reverting to default theme’ is closed to new replies.