Hey all, I’m getting a fatal error “call to undefined method” and I’m lost on how to resolve this issue. It had worked previously but with some upgrading, it no longer does.
The php is as follows:
[php] <?php
$wp_weather = new wp_wunderground();
$wp_weather->numdays = 1;
$wp_weather->highlow = 'F.%%high%%°/%%low%%°';
$weather = $wp_weather->build_forecast_home($wp_weather);
echo $weather;
?>[/php]
Thanks for all your help.