:: WordPress error
|
1 |
Fatal error: Call to undefined method Arras_Widget_Tag_Cloud::WP_Widget_Tag_Cloud() in ..../wp-content/themes/arras/library/widgets.php on line 404 |
:: How to fix
Edit your /library/widgets.php file on line 404
|
1 2 3 |
function Arras_Widget_Tag_Cloud() {
$this->WP_Widget_Tag_Cloud();
} |
change to:
|
1 2 3 |
function Arras_Widget_Tag_Cloud() {
parent::__construct();
} |
:: Links
+ Google