Forums
(@pavlicek)
19 years, 3 months ago
Hey, I had similar problem and I found this solution:
find line 2170 in functions.php:
it says – extract($wp_query->query_vars);
extract($wp_query->query_vars);
and change it to – extract((array)$wp_query->query_vars);
extract((array)$wp_query->query_vars);
It worked for me. Hope it will help.