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...

7 reasons why I use bbPress

bbPress 1.0 has finally been released last week. But why do I use it? Why would anyone use it? Here are my 7 reasons. It’s familiar If you have any experience with WordPress 2.7 or older, you will feel right at home using the new bbPress admin. You imediatly get a sense that you already [...]

Read full post...

12