With this article, I would like to start a series called WP Gotchas. In it, I will describe some problems you might and probably will run into as a WordPress plugin developer – if you haven’t already. At one point I was caught off-guard by them. Maybe this post will help you if you ever… Continue reading WP Gotcha #1: Passing an empty array as a WP_Query parameter
Category: WordPress
Programmatically checking WordPress plugin dependencies
Sometimes a WordPress plugin you are writing extends the functionality of another plugin or simply relies on it to work. In these cases, you need to make sure the plugins your plugin depends on are installed and active to be sure you can use their functionality. There are some existing libraries that you can use… Continue reading Programmatically checking WordPress plugin dependencies