June 26th, 2012
For plugin developers desiring an easier way to perform common tasks, a little more structure in their code, or perhaps even a dash of MVC goodness, here is a list of WordPress plugin frameworks.
This list is intended to be comprehensive. If you find an actively maintained plugin framework that’s […] Continue Reading…
5 Comments
| WordPress Development
| Permalink
Posted by Jānis Elsts
June 19th, 2012
It’s time for another WordPress plugin development tutorial 🙂 In this post, I will provide a step-by-step explanation of how to create a WordPress plugin that lets the user add an automatically generated table of contents (TOC) to their posts by using a simple shortcode.
The completed plugin will support […] Continue Reading…
2 Comments
| WordPress Development, WordPress Plugins
| Permalink
Posted by Jānis Elsts
June 7th, 2012
As of WordPress 3.1.3, it’s really easy to prevent unscrupulous web developers from displaying your site in a frame. Just add this one-liner to your functions.php file:
add_action('init', 'send_frame_options_header', 10, 0);
Now any other site that tries to load your WP blog in a frame will get this instead:
(The actual […] Continue Reading…
No Comments »
| Blogging, WordPress Development
| Permalink
Posted by Jānis Elsts
May 24th, 2012
Redis Object Cache is a WordPress plugin that provides a persistent, Redis-based backend for the WordPress object cache. Use it if you want to speed up your site and prefer Redis to other key-value stores.
Fair warning: If you’re not sure what Redis is and are just looking for ways to […] Continue Reading…
3 Comments
| WordPress Plugins
| Permalink
Posted by Jānis Elsts