Clivern

A Software Engineer and Occasional Writer.

WordPress HTTP API Best Practice

18 February 2014

After you fine tuned wordpress HTTP API ,it is the time to put your codes in a larger practice. I thick the best practice on HTTP API is wordpress plugin upgrades. Agreat trait of wordpress is that you can create plugins for public use and host them on wordpress servers. In this case you don't have to think about plugin upgrades because twice daily, wordpress sends requests to `api.wordpress.org` to check latest updates (visit More Details) .One of these requests a list of all plugins currently installed. The API server replies with a list of new versions and informations about them if available.

Read More

How To Make HTTP Requests with WordPress

18 February 2014

In the modern web "means 2.0", Web applications communicate with each other to gather and share data in between .Your wordpress blog is no exception that's why wordpress implemented a smart and powerful class WP_Http since version 2.7.0 .This class supports all methods you need to use.

Read More

How To Internationalize Your Wordpress Plugin

07 November 2013

Internationalization is the process of preparing your wordpress plugins for use in many languages. although wordpress uses english as its default language, it is used all over the world and many of its users don't read or write in english. also as a developer, you may need to reach a large scale of users and provide a simple tool for users to add their languages.

Read More