Tag Archives: wp

New plugin version not shown in wp dashboard

So, you’ve committed your plugin, tagged it, updated the readme.txt and you’re ready to update your installation. You’re reviewing Plugins from your dashboard, hitting F5 every second since, but the new version never shows up, even though you can see the new version in “Other Versions” using the WordPress™ Plugin Directory. Continue reading New plugin version not shown in wp dashboard

Using the wp settings API with a non-admin user

WordPress comes with the settings API, an API that simplifies development of configuration pages. It’s a complete API, with regard to function and security. This post will take a look at security, more specific, at access control. Continue reading Using the wp settings API with a non-admin user

Something to consider when developing a wp plugin

I’ve been busy developing a WordPress plugin lately and I experienced a best practice right away.

While developing the plugin will probably be the only one loaded. Once released into the wild, for instance by testing it on your live site, and being used in conjunction with pre installed plugins, you may run into PHP Fatal error: Cannot redeclare class ... in ... errors, even when you use import_once or require_once. Continue reading Something to consider when developing a wp plugin