get_weather_title();
if ( isset( $settings['show_current_weather'] ) && 'true' === $settings['show_current_weather'] ) {
include $this->_get_global_template( 'current' );
}
if ( isset( $settings['show_forecast_weather'] ) && 'true' === $settings['show_forecast_weather'] ) {
include $this->_get_global_template( 'forecast' );
}
?>