Meta tables for WordPress

For some time, there has been a debate among WordPress developers about adding additional meta tables, like wp_postmeta and wp_usermeta.
The only thing that everyone seems to agree on is that a unified API for accesing meta tables is necessary.

Read full post...

WordPress Community Appreciation

I read an interesting post today about WordPress plugin users being ungrateful.
To be honest, I don’t know what Jeff (the author of that post) is talking about. All the people that leave comments here have a grateful attitude, or are at least polite.

Read full post...

Front-end Editor: Loading only on certain pages

Here is a foolproof way to make only parts of your site editable: function front_editor_disable() { if ( ! is_single() ) return true; } add_filter(’front_end_editor_disable’, ‘front_editor_disable’); Just add that code in your theme’s functions.php file and you’re good to go: the plugin will work only on single posts. Feel free to replace is_single() with whatever [...]

Read full post...

Custom Field Images: Version 2.0

Version 2.0 adds a feature that should have been there from the beginning: instead of storing the image URL, it stores the image ID (for images uploaded to the site), along with the desired size. You’ll notice the change when you use the Insert CFI button to add an image. Otherwise, you can still add [...]

Read full post...