Any good weather plugin for wordpress?

wikimaldives

BANNED
Joined
Apr 27, 2019
Messages
105
Reaction score
24
I am looking for good weather forecasting WordPress plugin to be used on my website. it should be able to present the weather for days and months. Any suggestions?
 
Instead of stuffing your site with more plugins, you could just use the accuweather api (the plugin you will install might just use the same api to fetch data anyway) and do a curl call and show result. Should be like just 10 lines of code at most (file_get_contents can do it in two lines lol)...

Their pricing is here (upto 50 calls per day is free) (I am not affiliated with them)
Code:
https://developer.accuweather.com/packages
 
Instead of stuffing your site with more plugins, you could just use the accuweather api (the plugin you will install might just use the same api to fetch data anyway) and do a curl call and show result. Should be like just 10 lines of code at most (file_get_contents can do it in two lines lol)...

Their pricing is here (upto 50 calls per day is free) (I am not affiliated with them)
Code:
https://developer.accuweather.com/packages
I actually want to make weather tables, graphs, and infographics within the article by using the plugin. Is it possible?
 
I actually want to make weather tables, graphs, and infographics within the article by using the plugin. Is it possible?
Not sure about plugins, but definitely possible with the API + imagemagick for PHP.
 
Back
Top