Blog Archives

A Developer’s Guide To Translating WordPress.org Plugins

A quick reference guide for WordPress plugin developers who host their plugin in the WordPress.org repository.

Posted in WordPress Tagged with: , , , ,

Refund Is The Least You Can Do

Written from the perspective of a WordPress plugin developer. If things don’t work out, refund is the least you can do.

Posted in Entrepreneurship Tagged with: , , , ,

4 Well Maintained Plugins To Display Interactive Maps in WordPress

WordPress is one of the most popular and best-known options for building a website, and that’s primarily due to the variety of plug-ins it offers for adding features to pages. Even beginning web designers and developers can use WordPress plug-ins

Posted in Guest Posts, WordPress Tagged with: ,

6 Must Have WordPress Plugins for Beginners [2018]

It has now become a mandate for everyone to have a good online presence given the state of digitisation we are in. Earlier it used to be difficult to create a niche online as it needed strong technical skills to

Posted in Guest Posts Tagged with: , ,

Read Plugin Version Of Any WordPress Plugin

Using the get_file_data() function. More efficient than using get_plugin_data() function. $plugin_data = get_file_data( WP_PLUGIN_DIR . ‘/plugin-folder-name-in-wp-content-plugins-folder/plugin-main-file.php’, array( ‘Version’ => ‘Version’ ) ); $plugin_data[‘Version’] will have the version. To read version from within the same plugin: $plugin_data = get_file_data( __FILE__, array(

Posted in WordPress Tagged with: , ,