Belewien
Member
Posted 6 years ago #
My wordpress installation can be found here: http://fan.coffee-girl.net and if you see "curren fanlistings" page for example, you'll see this error message at the bottom:
"Warning: extract(): First argument should be an array in /home/coffeel/public_html/fan/wp-includes/functions.php on line 1813"
Also I can't get the "Fanlistings" link-category to show up in other pages than the index, how can I make it to show in other pages too?
That's a 3rd party script - not a WP issue: http://scripts.indisguise.org/ Please ask your questions at that site.
Belewien
Member
Posted 6 years ago #
But I don't think the problem relies with in enth3 - script, it works fine and it's in a whole another folder than WP :/
Belewien
Member
Posted 6 years ago #
Nobody? Anybody? I'm still having troubles with this :/
I search the forum with that error. I then looked for bug tickets on this but didn't find any. I found a similar error which was resolved by adding "(array)" before the variable. Line 1813 in functions.php is:
extract($wp_query->query_vars);
Change this to:
extract((array)$wp_query->query_vars);
You could try this and see what happens.