Viewing 2 replies - 1 through 2 (of 2 total)
  • I got the same problem, know’s anybody how to solve this and get a title in it?

    Thanks

    You can hard code the title. Getting an option to change the title in the admin interface is a bit more work.
    Open myweather.php in any editor and scroll to the very bottom where the widget code is. Copy this

    function widget_myweather($args){
    extract($args);
    echo $before_widget . $before_title;
    ?>The Weather<?
    echo $after_title;
    wp_myweather();
    echo $after_widget;
    }

    The Weather can be whatever title you want.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: myWeather] Widget Title?’ is closed to new replies.